Last change
on this file since 794 was 692, checked in by alloc, 12 years ago |
Daodan: Lots of cleanups (mostly unnecessary includes removed, empty files deleted, case of filenames corrected)
|
File size:
370 bytes
|
Rev | Line | |
---|
[346] | 1 | #ifndef INIFILE_H
|
---|
| 2 | #define INIFILE_H
|
---|
| 3 |
|
---|
[692] | 4 | #include "stdint.h"
|
---|
[346] | 5 |
|
---|
[692] | 6 | enum {
|
---|
| 7 | inifile_cantread = -20
|
---|
| 8 | };
|
---|
[346] | 9 |
|
---|
| 10 | typedef bool (*inifile_callback)(char* section, bool newsection, char* name, char* value);
|
---|
| 11 |
|
---|
[451] | 12 | char* inifile_cleanstr(char* str);
|
---|
| 13 | int64_t inifile_parseint(const char* str, bool issigned);
|
---|
[352] | 14 | bool inifile_read(const char* filename, inifile_callback callback);
|
---|
[346] | 15 |
|
---|
| 16 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.