不常用函数积累
文章平均质量分 51
丶Apache
Linux、linux驱动、网络编程、音视频编解码、Springboot、Mqtt、IOT
展开
-
Linux C中readdir()函数:读取目录函数
头文件:#include <sys/types.h> #include <dirent.h>函数原型:struct dirent * readdir(DIR * dir);函数功能:readdir()返回参数dir 目录流的下个目录进入点。结构dirent 定义如下: struct dirent { ...原创 2018-07-30 14:34:19 · 11318 阅读 · 1 评论 -
Linux C数据解析函数strtok():解析字符串
头文件:#include <string.h>函数原型:char* strtok(char* s,const char* delim)函数功能:分解字符串为一组字符串,s为要分解的字符串,delim为分隔符字符串返回值:成功则返回下个目录进入点. 有错误发生或读取到目录文件尾则返回NULL.范例:#include<stdio.h>#include&l...原创 2018-07-31 16:04:36 · 997 阅读 · 0 评论 -
Linux C中字符拼接函数strcat():拼接字符串
函数原型:char *strcat(char *dest, const char *src);函数功能:把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\0')。参数:dest 为目标字符串指针,src 为源字符串指针返回值:返回dest 字符串起始地址范例:#include <stdio.h>#include <string.h>i...原创 2018-07-31 16:16:40 · 13662 阅读 · 0 评论 -
不常用函数
int isspace(_In_ int _C);//判断_C是否为有空格,可以运用到去空格原创 2018-08-20 12:38:57 · 145 阅读 · 0 评论