www.digitalmars.com
Last update Mon Jun 19 20:51:27 2006

std.c.string

C's <string.h>

Authors:
Walter Bright, Digital Mars, www.digitalmars.com

License:
Public Domain

void* memcpy(void* s1, void* s2, uint n);


void* memmove(void* s1, void* s2, uint n);


char* strcpy(char* s1, char* s2);


char* strncpy(char* s1, char* s2, uint n);


char* strncat(char* s1, char* s2, uint n);


int strcoll(char* s1, char* s2);


int strncmp(char* s1, char* s2, uint n);


uint strxfrm(char* s1, char* s2, uint n);


void* memchr(void* s, int c, uint n);


char* strchr(char* s, int c);


uint strcspn(char* s1, char* s2);


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);


void* memset(void* s, int c, uint n);


char* strerror(int errnum);


int strlen(char* s);


int strcmp(char* s1, char* s2);


char* strcat(char* s1, char* s2);


int memcmp(void* s1, void* s2, uint n);


int memicmp(char* s1, char* s2, uint n);