22 #ifndef LELY_LIBC_STRING_H_
23 #define LELY_LIBC_STRING_H_
35 #if !(_MSC_VER >= 1400) && !(_POSIX_C_SOURCE >= 200809L) \
36 && !defined(__MINGW32__)
43 char *strdup(
const char *s);
46 #if !(_POSIX_C_SOURCE >= 200809L)
54 char *strndup(
const char *s,
size_t size);
59 #if !(_MSC_VER >= 1400) && !(_POSIX_C_SOURCE >= 200809L) \
60 && !defined(__MINGW32__)
68 size_t strnlen(
const char *s,
size_t maxlen);
This header file is part of the Lely libraries; it contains the compiler feature definitions.
This header file is part of the C11 and POSIX compatibility library; it includes <string....