~drizzle-trunk/drizzle/development

1 by brian
clean slate
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
994.2.4 by Monty Taylor
Blast. Fixed some make distcheck issues.
16
#include "mysys/mysys_priv.h"
212.5.18 by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype.
17
#include <mystrings/m_string.h>                           /* strcmp() */
1 by brian
clean slate
18
19
20
/**
21
  Append str to array, or move to the end if it already exists
22
23
  @param str    String to be appended
24
  @param array  The array, terminated by a NULL element, all unused elements
25
                pre-initialized to NULL
26
  @param size   Size of the array; array must be terminated by a NULL
27
                pointer, so can hold size - 1 elements
28
163 by Brian Aker
Merge Monty's code.
29
  @retval false  Success
30
  @retval true   Failure, array is full
1 by brian
clean slate
31
*/
32
146 by Brian Aker
my_bool cleanup.
33
bool array_append_string_unique(const char *str,
1 by brian
clean slate
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;
51.3.22 by Jay Pipes
Final round of removal of DBUG in mysys/, including Makefile
39
  assert(*end == NULL);
1 by brian
clean slate
40
41
  for (p= array; *p; ++p)
42
  {
43
    if (strcmp(*p, str) == 0)
44
      break;
45
  }
46
  if (p >= end)
163 by Brian Aker
Merge Monty's code.
47
    return true;                               /* Array is full */
1 by brian
clean slate
48
51.3.22 by Jay Pipes
Final round of removal of DBUG in mysys/, including Makefile
49
  assert(*p == NULL || strcmp(*p, str) == 0);
1 by brian
clean slate
50
51
  while (*(p + 1))
52
  {
53
    *p= *(p + 1);
54
    ++p;
55
  }
56
51.3.22 by Jay Pipes
Final round of removal of DBUG in mysys/, including Makefile
57
  assert(p < end);
1 by brian
clean slate
58
  *p= str;
59
163 by Brian Aker
Merge Monty's code.
60
  return false;                                 /* Success */
1 by brian
clean slate
61
}