License
Distributed under the
Boost Software License 1.0. (See accompanying file LICENSE)
Standards
ISO/IEC 9899:1999 (E)
D header file for C99.
Boost Software License 1.0. (See accompanying file LICENSE)
void * memcpy(return scope void * s1, scope const void * s2, size_t n) extern(C) nothrow @nogc pure;void * memmove(return scope void * s1, scope const void * s2, size_t n) extern(C) nothrow @nogc pure;char * strncat(return scope char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc pure;char * strncpy(return scope char * s1, scope const char * s2, size_t n) extern(C) nothrow @nogc pure;inout(char) * strpbrk(return scope inout(char) * s1, scope const char * s2) extern(C) nothrow @nogc pure;inout(char) * strstr(return scope inout(char) * s1, scope const char * s2) extern(C) nothrow @nogc pure;