namespace conformance to latest standards in strings.h

This commit is contained in:
Rich Felker 2013-02-26 01:30:36 -05:00
parent e864ddc368
commit d1eae83a59
1 changed files with 6 additions and 4 deletions

View File

@ -10,15 +10,17 @@ extern "C" {
#define __NEED_locale_t #define __NEED_locale_t
#include <bits/alltypes.h> #include <bits/alltypes.h>
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_POSIX_SOURCE) \
|| (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE+0 < 200809L) \
|| (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700)
int bcmp (const void *, const void *, size_t); int bcmp (const void *, const void *, size_t);
void bcopy (const void *, void *, size_t); void bcopy (const void *, void *, size_t);
void bzero (void *, size_t); void bzero (void *, size_t);
int ffs (int);
char *index (const char *, int); char *index (const char *, int);
char *rindex (const char *, int); char *rindex (const char *, int);
#endif
int ffs (int);
int strcasecmp (const char *, const char *); int strcasecmp (const char *, const char *);
int strncasecmp (const char *, const char *, size_t); int strncasecmp (const char *, const char *, size_t);