摘要:
头文件 : #include <string.h> 函数原型: char *strncat(char *dest, const char *src, size_t n); 函数说明: 将参数str指向的字符串拷贝n个字符到参数dest所指向的字符串尾,dest所指向的内存空间要足够大 返回值 : 返 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: char *strcat(char *dest, const char *src); 函数说明: 将参数str指向的字符串拷贝到参数dest所指向的字符串尾,dest所指向的内存空间要足够大 返回值 : 返回dest的值 阅读全文
摘要:
相关函数: memset 头文件 : #include <string.h> 函数原型: void *memset(void *s, int c, size_t n); 函数说明: 将参数s所指向的内存前n个字节以参数c填入 返回值 : 返回s的值 阅读全文
摘要:
头文件 : #include <string.h> 函数原型: int memcpy(const void *s1, const void *s2, size_t n); 函数说明: 比较s1和s2所指向内存区域前n个字节 返回值 : 若完全相同则返回0。若s1指向的内存中的值大于s2指向的内存,则 阅读全文
摘要:
相关函数: memcpy 头文件 : #include <string.h> 函数原型: void *memcpy(void *dest, const void *src, size_t n); 函数说明: 拷贝src所指向的内存前n个字节到dest所指向的内存 返回值 : 返回dest的值 阅读全文
摘要:
相关函数: bzero 头文件 : #include <string.h> 函数原型: void bzero(void *s, int n); 函数说明: 将参数s指向的内存区域前n个字节,全部设置为0 返回值 : 无 阅读全文