Changeset View
Changeset View
Standalone View
Standalone View
include/string.h
| Show First 20 Lines • Show All 65 Lines • ▼ Show 20 Lines | |||||
| #if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
| void *memmem(const void *, size_t, const void *, size_t) __pure; | void *memmem(const void *, size_t, const void *, size_t) __pure; | ||||
| #endif | #endif | ||||
| void *(memmove)(void *, const void *, size_t); | void *(memmove)(void *, const void *, size_t); | ||||
| #if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
| void *(mempcpy)(void * __restrict, const void * __restrict, size_t); | void *(mempcpy)(void * __restrict, const void * __restrict, size_t); | ||||
| #endif | #endif | ||||
| void *(memset)(void *, int, size_t); | void *(memset)(void *, int, size_t); | ||||
| #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 2023 | |||||
kevans: I believe | |||||
| void *memset_explicit(void *, int, size_t); | |||||
| #endif | |||||
| #if __POSIX_VISIBLE >= 200809 | #if __POSIX_VISIBLE >= 200809 | ||||
| char *(stpcpy)(char * __restrict, const char * __restrict); | char *(stpcpy)(char * __restrict, const char * __restrict); | ||||
| char *(stpncpy)(char * __restrict, const char * __restrict, size_t); | char *(stpncpy)(char * __restrict, const char * __restrict, size_t); | ||||
| #endif | #endif | ||||
| #if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
| char *strcasestr(const char *, const char *) __pure; | char *strcasestr(const char *, const char *) __pure; | ||||
| #endif | #endif | ||||
| char *(strcat)(char * __restrict, const char * __restrict); | char *(strcat)(char * __restrict, const char * __restrict); | ||||
| ▲ Show 20 Lines • Show All 94 Lines • Show Last 20 Lines | |||||
I believe