truck-code
|
#include <stdio.h>
Go to the source code of this file.
Functions | |
bool | allspace (char *pc) |
int | readline (FILE *pfile, char *pbuff, int size) |
long | get_ini_long (FILE *pfile, char *pentry, long long_def) |
unsigned | get_ini_hex (FILE *pfile, char *pentry, unsigned hex_def) |
FILE * | get_ini_section (char *pname, char *psection) |
bool allspace | ( | char * | pc | ) |
Check whether a give string is all spaces.
pc | the string that is being tested |
unsigned get_ini_hex | ( | FILE * | pfile, |
char * | pentry, | ||
unsigned | hex_def | ||
) |
TODO
pfile | pointer to file you're reading from. |
long get_ini_long | ( | FILE * | pfile, |
char * | pentry, | ||
long | long_def | ||
) |
TODO
pfile | pointer to file you're reading from. |
FILE* get_ini_section | ( | char * | pname, |
char * | psection | ||
) |
TODO
This routine opens the given configuration file, and locates the relevant section. It is necessary to call get_ini_section() before reading initialization values. It is necessary to call fclose() with the file pointer when done. It is also necessary to close one section before calling get_ini_section() again within the same program.
A typical configuration file is text, and might contain lines like:
[first_section_name] MoreData=TRUE AnotherVariable=1.2345
[windows_section] ScreenSaveActive=1 DoubleClickSpeed=452
[last_section] MoreData=FALSE
Note that:
Bugs
pname | The name of a configuration file. |
psection | The name of a section within a configuration file. It is not necessary to place brackets around the section name. |
int readline | ( | FILE * | pfile, |
char * | pbuff, | ||
int | size | ||
) |
TODO
This function attempts to read in a block of data of length "size" form the file pointed to by "pfile". The read operation is done from the current position of the file pointer (in the file). If there are fewer characters than "size" left on the line (a line is a string of characters terminated by a "/n" or an EOF character) then only those characters will be read in.
The integer value returned by the function will be equal to the number of characters read in unless readline is called when the file pointer is pointing directly at "EOF" then the function will return a -1 (the system constant "ERROR" ).
The string of characters returned in pbuff will always be terminated by a NULL character, "\O". The first NULL character in pbuff indicates the end of the string that was read in. Be forewarned there may be more than one NULL character in pbuff, but it is only the first one that is significant. Any characters returned in the buffer after the first NULL should be ignored.
If no characters are read in then the first character in pbuff will be the NULL character and the function will return a value of -1 (the system constant, "ERROR" ).
Bugs:
pfile | pointer to file you're reading from. |
pbuff | character array into which character are being read. |
size | The size of the buffer. (counted from 1, ie. 1 .. size). |
TODO RETURN ERROR size <= 0 ERROR EOF #char String length.