all repos — cgit @ a8b9ef8c1c68fbb9c89db2d8c12dca38c15e2bfd

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