First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

12
ini.h Normal file
View file

@ -0,0 +1,12 @@
#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