summaryrefslogtreecommitdiff
path: root/io/bin/generic_gpio/ini.c
blob: 25ac0c9f2722c5538747fee74b873f545e6ada8d (plain)
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
#include "ini.h"

dictionary *_iniparser_load (const char *conf) {
	return iniparser_load (conf);
}

int _iniparser_getnsec (dictionary *d) {
	return iniparser_getnsec (d);
}

char *_iniparser_getsecname (dictionary *d, int i) {
	return iniparser_getsecname (d, i);
}

void _iniparser_freedict (dictionary *d) {
	iniparser_freedict (d);
}

char *_iniparser_getstring(dictionary * d, const char * key, char * def) {
	return iniparser_getstring(d, key, def);
}

int _iniparser_getint(dictionary * d, const char * key, int notfound) {
	return iniparser_getint(d, key, notfound);
}