1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#ifndef INI_READ_H_INCLUDED
#define INI_READ_H_INCLUDED
// #include "deftypes.h"
#include <stdint.h> /* int64_t*/
typedef struct lci_data {
enum nodeState {EMPTY, READY, CONTINUE, MULTILINE, ERROR } nodeState;
int64_t lineNum;
int64_t lineLen;
char *section;
int64_t sectionLen;
int64_t sectionStartPos;
char *param;
int64_t paramLen;
int64_t paramStartPos;
char *value;
int64_t valueLen;
int64_t valueStartPos;
char *comment;
int64_t commentLen;
int64_t commentStartPos;
char *errorMsg;
int64_t errorMsgLen;
struct lci_data *next;
} lci_data;
enum ini_states {Start, BgnSp, CommEndW, SectEndW, SectEndD, EqW1, EqW2, ValPSP, ValW, ValFSP, DqmW, Bslsh, Error, Stop };
struct lci_data *iniReadOut(const char *filename);
int64_t getFileMaxLineLen(FILE *tfd);
char *lciGETtoStr( const char *section, const char *param, char *dest, size_t dstlen );
//int lciGETtoStrlen(const char *section, const char *param, ...);
int8_t lciGETtoInt8( const char *filename, const char *section, const char *param);
int16_t lciGETtoInt16(const char *filename, const char *section, const char *param);
int32_t lciGETtoInt32(const char *filename, const char *section, const char *param);
int64_t lciGETtoInt64(const char *filename, const char *section, const char *param);
double lciGETtoDlb(const char *filename, const char *section, const char *param);
float lciGETtoFlt(const char *filename, const char *section, const char *param);
long int lciGETtoLng(const char *filename, const char *section, const char *param);
#endif // INI_READ_H_INCLUDED
|