std.c.string
C's <string.h>
- Authors:
- Walter Bright, Digital Mars, http://www.digitalmars.com
- License:
- Public Domain
-
- void* memchr(void* s, int c, uint n)
- int memcmp(void* s1, void* s2, uint n)
- void* memcpy(void* s1, void* s2, uint n)
- int memicmp(char* s1, char* s2, uint n)
- void* memmove(void* s1, void* s2, uint n)
- void* memset(void* s, int c, uint n)
- char* strcat(char* s1, char* s2)
- char* strchr(char* s, int c)
- int strcmp(char* s1, char* s2)
- int strcoll(char* s1, char* s2)
- char* strcpy(char* s1, char* s2)
- uint strcspn(char* s1, char* s2)
- char* strerror(int errnum)
- uint strlen(char* s)
- char* strncat(char* s1, char* s2, uint n)
- int strncmp(char* s1, char* s2, uint n)
- char* strncpy(char* s1, char* s2, uint n)
- char* strpbrk(char* s1, char* s2)
- char* strrchr(char* s, int c)
- uint strspn(char* s1, char* s2)
- char* strstr(char* s1, char* s2)
- char* strtok(char* s1, char* s2)
- uint strxfrm(char* s1, char* s2, uint n)