CProxy/conf.h

14 lines
221 B
C
Raw Normal View History

#ifndef CONF_H
#define CONF_H
#include "iniparser.h"
#include "cproxy.h"
#include <unistd.h>
2019-06-20 09:39:31 +08:00
char *strncpy_(char *dest, const char *src, size_t n);
void read_conf(char *file, conf *p);
void free_conf(conf *p);
#endif