📄 util.h
字号:
#ifndef __UTIL_H_char *GetFilePath(char *file, char *path); /* get path from full path name */char *GetFileName(char *file); /* get file name from full path name */char *del_all_spaces(char *p); /* del all spaces */char *del_lr_spaces(char *pbuf); /* del left and right spaces */char *del_rn(char *pbuf); /* del \r and \n */int write_log(char *file, char *format, ...);int read_config_string(char *config_file, char *item, char *str_buf);int read_config_int(char *config_file, char *item, int *int_buf);int write_config_string(char *config_file, char *item, char *str_buf);int write_config_int(char *config_file, char *item, int int_buf);char *lower_case(char *);char *upper_case(char *);int strcmpi(char *, char *);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -