all repos — cgit @ 1dd53e3a2ffec730ec27ebe15b3d63e0b417a544

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