GCLog/ini.h
2018-04-08 21:34:42 +02:00

12 lines
164 B
C

#ifndef _INI_H_
#define _INI_H_
#include <stdio.h>
#include "trim.h"
#include "map.h"
#define INI_LINELEN 100
struct map_t * load_ini(const char *file);
#endif