a gopher interface forked from the popular cgit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CONFIGFILE_H
|
|
#define CONFIGFILE_H
|
|
|
|
#include "cgit.h"
|
|
|
|
typedef void (*configfile_value_fn)(const char *name, const char *value);
|
|
|
|
extern int parse_configfile(const char *filename, configfile_value_fn fn);
|
|
|
|
#endif /* CONFIGFILE_H */
|
|
|