read_ini.h 351 Bytes
Newer Older
1
2
3
#ifndef READ_INI_H
#define READ_INI_H

4
5
6
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
7
#include "../Main/Main_datatypes.h"
8

9
10
11
12
typedef void (*Malloc_conf)(configuration* user_config);
typedef struct {
  Malloc_conf resizes_f, stages_f;
} ext_functions_t;
iker_martin's avatar
iker_martin committed
13

14
configuration *read_ini_file(char *file_name, ext_functions_t init_functions);
15
16

#endif