core.stdc.string

D header file for C99.

Functions 24

fninout(void) * memchr(return scope inout void * s, int c, size_t n) extern(C) nothrow @nogc pure;
fnint memcmp(scope const void * s1, scope const void * s2, size_t n) extern(C) nothrow @nogc pure;
fnvoid * memcpy(return scope void * s1, scope const void * s2, size_t n) extern(C) nothrow @nogc pure;
fnvoid * memmove(return scope void * s1, scope const void * s2, size_t n) extern(C) nothrow @nogc pure;
fnvoid * memset(return scope void * s, int c, size_t n) extern(C) nothrow @nogc pure;
fnchar * strcat(return scope char * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fninout(char) * strchr(return scope inout(char) * s, int c) extern(C) nothrow @nogc pure;
fnint strcmp(scope const char * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fnint strcoll(scope const char * s1, scope const char * s2) extern(C) nothrow @nogc
fnchar * strcpy(return scope char * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fnsize_t strcspn(scope const char * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fnchar * strdup(scope const char * s) extern(C) nothrow @nogc
fnchar * strndup(scope const char * str, size_t size) extern(C) nothrow @nogc
fnchar * strerror(int errnum) extern(C) nothrow @nogc
fnsize_t strlen(scope const char * s) extern(C) nothrow @nogc pure;
fnchar * strncat(return scope char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc pure;
fnint strncmp(scope const char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc pure;
fnchar * strncpy(return scope char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc pure;
fninout(char) * strpbrk(return scope inout(char) * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fninout(char) * strrchr(return scope inout(char) * s, int c) extern(C) nothrow @nogc pure;
fnsize_t strspn(scope const char * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fninout(char) * strstr(return scope inout(char) * s1, scope const char * s2) extern(C) nothrow @nogc pure;
fnchar * strtok(return scope char * s1, scope const char * s2) extern(C) nothrow @nogc
fnsize_t strxfrm(scope char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc