16 lines
283 B
C
16 lines
283 B
C
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#include <libconfig.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
typedef struct {
|
|
config_t cfg;
|
|
} t_configHandle;
|
|
|
|
int initConfig(const char *configFilename, t_configHandle *configHandle);
|
|
void deinitConfig(t_configHandle *configHandle);
|
|
|
|
|
|
#endif // _CONFIG_H_
|