ini_reader.h
Go to the documentation of this file.
00001
00054 #ifndef INI_READER_H
00055 #define INI_READER_H
00056 
00057 #include <io/kfile.h>
00058
00072 int ini_getString(KFile *fd, const char *section, const char *key, const char *default_value, char *buf, size_t size);
00073
00074
00075 int ini_getInteger(KFile *fd, const char *section, const char *key, long default_value, long *val, int base);
00076 int ini_setString(KFile *in, KFile *out, const char *section, const char *key, const char *value);
00077
00078 int ini_reader_testSetup(void);
00079 int ini_reader_testRun(void);
00080 int ini_reader_testTearDown(void);
00081  // defgroup ini_reader
00083 #endif /* INI_READER_H */