preparation de la lecture du fichier de conf

This commit is contained in:
2019-01-17 09:07:47 +01:00
parent 2f2bfa641a
commit abdfc44cbe
6 changed files with 144 additions and 12 deletions

21
core/config.h Normal file
View File

@@ -0,0 +1,21 @@
/*
* config.h
*/
#define SZ_STRINGS 200
typedef struct {
int valid;
} Configuration;
/* ---------------------------------------------------------------- */
int parse_config(char *fname, int flags);
int show_config(char *title);
/* ---------------------------------------------------------------- */