15 lines
381 B
C
15 lines
381 B
C
#include "types.h"
|
|
|
|
#ifndef CONFIG_FILE_H
|
|
#define CONFIG_FILE_H
|
|
|
|
ConfigFile config_file_read(char *path);
|
|
|
|
char *config_file_get_str(ConfigFile config, char *key, char *default_value);
|
|
|
|
unsigned int config_file_get_int(ConfigFile config, char *key,
|
|
unsigned int default_value);
|
|
|
|
void config_file_free(ConfigFile config);
|
|
|
|
#endif /* CONFIG_FILE_H */ |