truck-code
sys.h
Go to the documentation of this file.
1 
10 #ifndef INCLUDE_UTILS_SYS_H_
11 #define INCLUDE_UTILS_SYS_H_
12 
13 #include <stdio.h>
14 
15 
23 extern bool allspace(char *pc);
24 
25 
69 extern int readline(FILE *pfile, char *pbuff, int size);
70 
71 
77 extern long get_ini_long(FILE *pfile, char *pentry, long long_def);
78 
79 
85 extern unsigned get_ini_hex(FILE *pfile, char *pentry, unsigned hex_def);
86 
87 
129 extern FILE *get_ini_section(char *pname, char *psection);
130 
131 
132 #endif /* INCLUDE_UTILS_SYS_H_ */
FILE * get_ini_section(char *pname, char *psection)
Definition: sys.cpp:131
bool allspace(char *pc)
Definition: sys.cpp:20
long get_ini_long(FILE *pfile, char *pentry, long long_def)
Definition: sys.cpp:86
unsigned get_ini_hex(FILE *pfile, char *pentry, unsigned hex_def)
Definition: sys.cpp:109
int readline(FILE *pfile, char *pbuff, int size)
Definition: sys.cpp:29