diff options
author | M.Gergő | 2020-05-08 01:44:08 +0200 |
---|---|---|
committer | M.Gergő | 2020-05-08 01:44:08 +0200 |
commit | 8b42a04bf6df46fa06e2333a0b41b3c92e7ef4f1 (patch) | |
tree | 99361a10d87cbea685443105f6fa7df21bfc111f /src/ini_rw.h | |
parent | 669d3cdf0bd470fa827693423216854dcd2ca1b8 (diff) | |
download | lightconfini-8b42a04bf6df46fa06e2333a0b41b3c92e7ef4f1.tar.gz lightconfini-8b42a04bf6df46fa06e2333a0b41b3c92e7ef4f1.zip |
ASCII section
Diffstat (limited to 'src/ini_rw.h')
-rw-r--r-- | src/ini_rw.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ini_rw.h b/src/ini_rw.h index 3e23e03..10b21d3 100644 --- a/src/ini_rw.h +++ b/src/ini_rw.h @@ -8,23 +8,23 @@ typedef struct lci_data { enum nodeState {EMPTY, READY, CONTINUE, MULTILINE, ERROR } nodeState; - uint64_t lineNum; - uint64_t lineLen; + int64_t lineNum; + int64_t lineLen; char *section; - uint64_t sectionLen; - uint64_t sectionStartPos; + int64_t sectionLen; + int64_t sectionStartPos; char *param; - uint64_t paramLen; - uint64_t paramStartPos; + int64_t paramLen; + int64_t paramStartPos; char *value; - uint64_t valueLen; - uint64_t valueStartPos; + int64_t valueLen; + int64_t valueStartPos; char *comment; - uint64_t commentLen; - uint64_t commentStartPos; + int64_t commentLen; + int64_t commentStartPos; char *errorMsg; - uint64_t errorMsgLen; + int64_t errorMsgLen; struct lci_data *next; } lci_data; |