MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mf_arr_appstr.c
1 /* Copyright (C) 2007 MySQL AB
2 
3  This program is free software; you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation; version 2 of the License.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program; if not, write to the Free Software
14  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
15 
16 #include "mysys_priv.h"
17 #include <m_string.h> /* strcmp() */
18 
19 
33 my_bool array_append_string_unique(const char *str,
34  const char **array, size_t size)
35 {
36  const char **p;
37  /* end points at the terminating NULL element */
38  const char **end= array + size - 1;
39  DBUG_ASSERT(*end == NULL);
40 
41  for (p= array; *p; ++p)
42  {
43  if (strcmp(*p, str) == 0)
44  break;
45  }
46  if (p >= end)
47  return TRUE; /* Array is full */
48 
49  DBUG_ASSERT(*p == NULL || strcmp(*p, str) == 0);
50 
51  while (*(p + 1))
52  {
53  *p= *(p + 1);
54  ++p;
55  }
56 
57  DBUG_ASSERT(p < end);
58  *p= str;
59 
60  return FALSE; /* Success */
61 }