mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
18598ff105
Cleanup the strings.h header for XPG7 and update the tests.
24 lines
727 B
Plaintext
24 lines
727 B
Plaintext
#if !defined XOPEN2K8 && !defined POSIX2008
|
|
function int bcmp (const void*, const void*, size_t)
|
|
function void bcopy (const void*, void*, size_t)
|
|
function void bzero (void*, size_t)
|
|
function {char*} index (const char*, int)
|
|
function {char*} rindex (const char*, int)
|
|
#endif
|
|
#if !defined POSIX && !defined POSIX2008
|
|
function int ffs (int)
|
|
#endif
|
|
function int strcasecmp (const char*, const char*)
|
|
function int strncasecmp (const char*, const char*, size_t)
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
function int strcasecmp_l (const char*, const char*, locale_t)
|
|
function int strncasecmp_l (const char*, const char*, size_t, locale_t)
|
|
#endif
|
|
|
|
type size_t
|
|
#if defined XOPEN2K8 || defined POSIX2008
|
|
type locale_t
|
|
#endif
|
|
|
|
allow *_t
|