string.h 字符串处理类
memchr void *memchr(const void *s, 在存储器中搜索字符诶
int c, size_t n)
memcmp int memcmp(const void *s1, 比较存储器内容
const void *s2, size_t n)
memcpy void *memcpy(void *s1, 拷贝存储器内容
const void *s2, size_t n)
memmove void *memmove(void *s1, 移动存储器内容
const void *s2, size_t n)
memset void *memset(void *s, 置存储器
int c, size_t n)
strcat char *strcat(char *s1, 逻辑字符串
const char *s2)
strchr char *strchr(const char *s, int c)在字符串中找某一个字符
strcmp int strcmp(const char *s1, 比较两个字符串
const char *s2)
strcoll int strcoll(const char *s1, 比较字符串
const char *s2)
strcpy char *strcpy(char *s1, const 拷贝字符串
char *s2)
strcspn size_t strcspn(const char 在字符串中跨过被排除的字符
*s1, const char *s2)
strerror char *strerror(int errnum) 给出一个错误信息字符串
strlen size_t strlen(const char *s) 计算字符串长度函数 |