32bit memcmp/strcmp/strncmp optimized for SSSE3/SSS4.2
[glibc.git] / conform / data / string.h-data
blob1c4ae0814e7740fcdb5f897014f9fa1d2796c1cc
1 constant NULL
3 type size_t
4 #if defined XOPEN2K8 || defined POSIX2008
5 type locale_t
6 #endif
8 #if !defined POSIX && !defined POSIX2008
9 function {void*} memccpy (void*, const void*, int, size_t)
10 #endif
11 function {void*} memchr (const void*, int, size_t)
12 function int memcmp (const void*, const void*, size_t)
13 function {void*} memcpy (void*, const void*, size_t)
14 function {void*} memmove (void*, const void*, size_t)
15 function {void*} memset (void*, int, size_t)
16 #if defined XOPEN2K8 || defined POSIX2008
17 function {char*} stpcpy (char*, const char*)
18 function {char*} stpncpy (char*, const char*, size_t)
20 #endif
21 function {char*} strcat (char*, const char*)
22 function {char*} strchr (const char*, int)
23 function int strcmp (const char*, const char*)
24 function int strcoll (const char*, const char*)
25 #if defined XOPEN2K8 || defined POSIX2008
26 function int strcoll_l (const char*, const char*, locale_t)
27 #endif
28 function {char*} strcpy (char*, const char*)
29 function size_t strcspn (const char*, const char*)
30 function {char*} strdup (const char*)
31 function {char*} strerror (int)
32 #if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
33 function int strerror_r (int, char*, size_t)
34 #endif
35 #if defined XOPEN2K8 || defined POSIX2008
36 function {char*} strerror_l (int, locale_t)
37 #endif
38 function size_t strlen (const char*)
39 function {char*} strncat (char*, const char*, size_t)
40 function int strncmp (const char*, const char*, size_t)
41 function {char*} strncpy (char*, const char*, size_t)
42 #if defined XOPEN2K8 || defined POSIX2008
43 function {char*} strndup (const char*, size_t)
44 function size_t strnlen (const char*, size_t)
45 #endif
46 function {char*} strpbrk (const char*, const char*)
47 function {char*} strrchr (const char*, int)
48 #if defined XOPEN2K8 || defined POSIX2008
49 function {char*} strsignal (int)
50 #endif
51 function size_t strspn (const char*, const char*)
52 function {char*} strstr (const char*, const char*)
53 function {char*} strtok (char*, const char*)
54 function {char*} strtok_r (char*, const char*, char**)
55 function size_t strxfrm (char*, const char*, size_t)
56 #if defined XOPEN2K8 || defined POSIX2008
57 function size_t strxfrm_l (char*, const char*, size_t, locale_t)
58 #endif
60 allow-header stddef.h
62 allow str*
63 allow wcs*
64 allow *_t