You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/sarp/config.h

20 lines
365 B
C

#ifndef SARP_CONFIG_H_
#define SARP_CONFIG_H_
#include <sarp/mem.h>
#ifdef __cplusplus
extern "C" {
#endif
struct sarp_config;
void sarp_new_config(struct sarp_config ** conf, struct sarp_alloc * mem);
void sarp_free_config(struct sarp_config ** conf);
int sarp_load_config(struct sarp_config * conf, const char * fname);
#ifdef __cplusplus
}
#endif
#endif