summaryrefslogtreecommitdiff
path: root/io/bin/generic_gpio/ini.h
blob: 39b7255eb2ed3b3f6d4884c696611e8925d8d36a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iniparser.h>
#define GPIO_CONFIG "gpio.conf"

#ifdef __cplusplus
extern "C" {
#endif
int init (void);
dictionary * _iniparser_load (const char *conf);
int _iniparser_getnsec (dictionary *d);
char *_iniparser_getsecname (dictionary *d, int i);
void _iniparser_freedict (dictionary *d);
char *_iniparser_getstring(dictionary * d, const char * key, char * def);
int _iniparser_getint(dictionary * d, const char * key, int notfound);
#ifdef __cplusplus
}
#endif