~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000 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
16
#include <my_global.h>
17
#include <m_string.h>
53.2.18 by Monty Taylor
Added include for prototype.
18
#include <my_sys.h>
1 by brian
clean slate
19
20
/*
21
  my_memmem, port of a GNU extension.
22
23
  Returns a pointer to the beginning of the substring, needle, or NULL if the
24
  substring is not found in haystack.
25
*/
26
27
void *my_memmem(const void *haystack, size_t haystacklen,
28
                const void *needle, size_t needlelen)
29
{
30
  const unsigned char *cursor;
31
  const unsigned char *last_possible_needle_location =
32
    (unsigned char *)haystack + haystacklen - needlelen;
33
34
  /* Easy answers */
35
  if (needlelen > haystacklen) return(NULL);
36
  if (needle == NULL) return(NULL);
37
  if (haystack == NULL) return(NULL);
38
  if (needlelen == 0) return(NULL);
39
  if (haystacklen == 0) return(NULL);
40
41
  for (cursor = haystack; cursor <= last_possible_needle_location; cursor++) {
42
    if (memcmp(needle, cursor, needlelen) == 0) {
43
      return((void *) cursor);
44
    }
45
  }
46
  return(NULL);
47
}
48
49
  
50
51
#ifdef MAIN
52
#include <assert.h>
53
54
int main(int argc, char *argv[]) {
55
  char haystack[10], needle[3];
56
57
  memmove(haystack, "0123456789", 10);
58
59
  memmove(needle, "no", 2);
60
  assert(my_memmem(haystack, 10, needle, 2) == NULL);
61
62
  memmove(needle, "345", 3);
63
  assert(my_memmem(haystack, 10, needle, 3) != NULL);
64
65
  memmove(needle, "789", 3);
66
  assert(my_memmem(haystack, 10, needle, 3) != NULL);
67
  assert(my_memmem(haystack, 9, needle, 3) == NULL);
68
69
  memmove(needle, "012", 3);
70
  assert(my_memmem(haystack, 10, needle, 3) != NULL);
71
  assert(my_memmem(NULL, 10, needle, 3) == NULL);
72
73
  assert(my_memmem(NULL, 10, needle, 3) == NULL);
74
  assert(my_memmem(haystack, 0, needle, 3) == NULL);
75
  assert(my_memmem(haystack, 10, NULL, 3) == NULL);
76
  assert(my_memmem(haystack, 10, needle, 0) == NULL);
77
78
  assert(my_memmem(haystack, 1, needle, 3) == NULL);
79
80
  printf("success\n");
81
  return(0);
82
}
83
84
#endif