?? cf.h
字號:
#ifndef CF_H
#define CF_H
/*
* Header file for configuration file library
*/
#define CF_OK 0
#define CF_NOT_FOUND -11
#define CF_ERR_CLOSE -102
#define CF_ERR_SLOT_TOO_MANY -103
#define CF_ERR_PARAMETER -104
#define CF_ERR_LINE_TOO_LONG -105
#define CF_ERR_BEGIN_DATA -106
#define CF_ERR_WITHOUT_KEYW -108
#define CF_ERR_WITHOUT_BEGIN -109
#define CF_ERR_WITHOUT_END -110
#define CF_ERR_WITHOUT_DATA -111
#define CF_ERR_SYNTAX_ENV -112
#define CF_ERR_ENV_VAR -113
#define CF_ERR_FILE_POS -114
extern int CF_open(char *cf_path);
extern int CF_close(int cf_id);
extern int CF_read(int cf_id, char *keyword, char *buf, int buf_len);
#endif /* CF_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -