mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
002e2dc42b
2000-02-24 Ulrich Drepper <drepper@redhat.com> * conform/conformtest.pl (@headers): Add string.h and strings.h. * conform/data/string.h-data: New file. * conform/data/strings.h-data: New file. * string/string.h [__USE_XOPEN]: Don't declare functions from <strings.h> here as well.
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
constant NULL
|
|
|
|
type size_t
|
|
|
|
function {void*} memccpy (void*, const void*, int, size_t)
|
|
function {void*} memchr (const void*, int, size_t)
|
|
function int memcmp (const void*, const void*, size_t)
|
|
function {void*} memcpy (void*, const void*, size_t)
|
|
function {void*} memmove (void*, const void*, size_t)
|
|
function {void*} memset (void*, int, size_t)
|
|
function {char*} strcat (char*, const char*)
|
|
function {char*} strchr (const char*, int)
|
|
function int strcmp (const char*, const char*)
|
|
function int strcoll (const char*, const char*)
|
|
function {char*} strcpy (char*, const char*)
|
|
function size_t strcspn (const char*, const char*)
|
|
function {char*} strdup (const char*)
|
|
function {char*} strerror (int)
|
|
function size_t strlen (const char*)
|
|
function {char*} strncat (char*, const char*, size_t)
|
|
function int strncmp (const char*, const char*, size_t)
|
|
function {char*} strncpy (char*, const char*, size_t)
|
|
function {char*} strpbrk (const char*, const char*)
|
|
function {char*} strrchr (const char*, int)
|
|
function size_t strspn (const char*, const char*)
|
|
function {char*} strstr (const char*, const char*)
|
|
function {char*} strtok (char*, const char*)
|
|
function {char*} strtok_r (char*, const char*, char**)
|
|
function size_t strxfrm (char*, const char*, size_t)
|
|
|
|
allow-header stddef.h
|