all repos — cgit @ 1b1974c45e5e23e5527aa43c4d9ece423a13dfdc

a hyperfast web frontend for git written in c

configfile.h (view raw)

 1#ifndef CONFIGFILE_H
 2#define CONFIGFILE_H
 3
 4#include "cgit.h"
 5
 6typedef void (*configfile_value_fn)(const char *name, const char *value);
 7
 8extern int parse_configfile(const char *filename, configfile_value_fn fn);
 9
10#endif /* CONFIGFILE_H */