Welcome to mirror list, hosted at ThFree Co, Russian Federation.

configfile.h - git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04235e547c87201249b8fab47f3eff7be843bcd7 (plain)
1
2
3
4
5
6
7
8
#ifndef CONFIGFILE_H
#define CONFIGFILE_H

typedef void (*configfile_value_fn)(const char *name, const char *value);

extern int parse_configfile(const char *filename, configfile_value_fn fn);

#endif /* CONFIGFILE_H */