X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fstring.h;h=795a2abcd990ac1ecd3b7592d6948b897ec9cb68;hb=20c6d83f5566590a65895b4fa11bf31fee3dcc44;hp=5587c8805319807e7d962fd53a11541417c4f7fd;hpb=c1a9658bd19245ff0fb52d3da567815d822fb622;p=musl diff --git a/include/string.h b/include/string.h index 5587c880..795a2abc 100644 --- a/include/string.h +++ b/include/string.h @@ -7,9 +7,8 @@ extern "C" { #include -#undef NULL #ifdef __cplusplus -#define NULL 0 +#define NULL 0L #else #define NULL ((void*)0) #endif @@ -79,19 +78,19 @@ size_t strxfrm_l (char *__restrict, const char *__restrict, size_t, locale_t); void *memccpy (void *__restrict, const void *__restrict, int, size_t); #endif -#ifdef _BSD_SOURCE +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +char *strsep(char **, const char *); size_t strlcat (char *, const char *, size_t); size_t strlcpy (char *, const char *, size_t); +void explicit_bzero (void *, size_t); #endif #ifdef _GNU_SOURCE #define strdupa(x) strcpy(alloca(strlen(x)+1),x) int strverscmp (const char *, const char *); -int strcasecmp_l (const char *, const char *, locale_t); -int strncasecmp_l (const char *, const char *, size_t, locale_t); char *strchrnul(const char *, int); char *strcasestr(const char *, const char *); -char *strsep(char **, const char *); +void *memmem(const void *, size_t, const void *, size_t); void *memrchr(const void *, int, size_t); void *mempcpy(void *, const void *, size_t); #ifndef __cplusplus