📄 utils.h
字号:
#ifndef UTILS_H
#define UTILS_H
#ifdef __cplusplus
extern "C" {
#endif
/* string functions */
char* trim_strLR(const char *str, char *buf);
char* trim_str(char *str, char *buf);
char* my_strtok(char **pToken, const char *strDelimit);
void spl_str(const char *str, const char *sep, char **v, int *c);
void free_arg(char **v, int c);
int my_system(char *command, unsigned long timeout, char *buffer, int buflen);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -