all repos — cgit @ 8a6f98afe944b434a614203c98691307ad9ccbc8

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