D
Language
Phobos
Comparisons
object
std
std.base64
std.boxer
std.compiler
std.conv
std.cover
std.ctype
std.date
std.demangle
std.file
std.format
std.gc
std.intrinsic
std.math
std.md5
std.mmfile
std.openrj
std.outbuffer
std.path
std.process
std.random
std.recls
std.regexp
std.socket
std.socketstream
std.stdint
std.stdio
std.cstream
std.stream
std.string
std.system
std.thread
std.uri
std.utf
std.zip
std.zlib
std.c.fenv
std.c.math
std.c.process
std.c.stdarg
std.c.stddef
std.c.stdio
std.c.stdlib
std.c.string
std.c.time
std.c.wcharh
std.windows.charset
std.windows
std.linux
std.c.windows
std.c.linux
|
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);
|