all repos — cgit @ 4468ec1b15becf3838d8cf38440c527c487565a4

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 */