1macro-constant NULL == 0
2
3type size_t
4#if defined XOPEN2K8 || defined POSIX2008
5type locale_t
6#endif
7
8#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined POSIX && !defined POSIX2008
9function {void*} memccpy (void*, const void*, int, size_t)
10#endif
11function {void*} memchr (const void*, int, size_t)
12function int memcmp (const void*, const void*, size_t)
13function {void*} memcpy (void*, const void*, size_t)
14function {void*} memmove (void*, const void*, size_t)
15function {void*} memset (void*, int, size_t)
16#if defined XOPEN2K8 || defined POSIX2008
17function {char*} stpcpy (char*, const char*)
18function {char*} stpncpy (char*, const char*, size_t)
19
20#endif
21function {char*} strcat (char*, const char*)
22function {char*} strchr (const char*, int)
23function int strcmp (const char*, const char*)
24function int strcoll (const char*, const char*)
25#if defined XOPEN2K8 || defined POSIX2008
26function int strcoll_l (const char*, const char*, locale_t)
27#endif
28function {char*} strcpy (char*, const char*)
29function size_t strcspn (const char*, const char*)
30#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined XPG4 && !defined POSIX && !defined POSIX2008
31function {char*} strdup (const char*)
32#endif
33function {char*} strerror (int)
34#if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
35function int strerror_r (int, char*, size_t)
36#endif
37#if defined XOPEN2K8 || defined POSIX2008
38function {char*} strerror_l (int, locale_t)
39#endif
40function size_t strlen (const char*)
41function {char*} strncat (char*, const char*, size_t)
42function int strncmp (const char*, const char*, size_t)
43function {char*} strncpy (char*, const char*, size_t)
44#if defined XOPEN2K8 || defined POSIX2008
45function {char*} strndup (const char*, size_t)
46function size_t strnlen (const char*, size_t)
47#endif
48function {char*} strpbrk (const char*, const char*)
49function {char*} strrchr (const char*, int)
50#if defined XOPEN2K8 || defined POSIX2008
51function {char*} strsignal (int)
52#endif
53function size_t strspn (const char*, const char*)
54function {char*} strstr (const char*, const char*)
55function {char*} strtok (char*, const char*)
56#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
57function {char*} strtok_r (char*, const char*, char**)
58#endif
59function size_t strxfrm (char*, const char*, size_t)
60#if defined XOPEN2K8 || defined POSIX2008
61function size_t strxfrm_l (char*, const char*, size_t, locale_t)
62#endif
63
64#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX
65allow-header stddef.h
66#endif
67
68allow str[abcdefghijklmnopqrstuvwxyz]*
69allow mem[abcdefghijklmnopqrstuvwxyz]*
70allow wcs[abcdefghijklmnopqrstuvwxyz]*
71#if !defined ISO && !defined ISO99 && !defined ISO11
72allow *_t
73#endif
74