libconf/libconf.h

13 lines
209 B
C
Raw Permalink Normal View History

2020-06-08 16:46:34 +08:00
#ifndef LIBCONF_H
#define LIBCONF_H
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <error.h>
#include <unistd.h>
extern char *read_conf(char *filename, char *module, char *key);
2020-06-08 16:46:34 +08:00
#endif