libchat6
lc6_config.h
1 #ifndef LC6_CONFIG_H
2 #define LC6_CONFIG_H
3 
4 #include "../inc/lc6_common.h"
5 
6 LC6_CTX* lc6config_load(char *path, unsigned char *password);
7 int lc6config_save(LC6_CTX *conf, unsigned char *password);
8 void lc6config_free(LC6_CTX *conf);
9 
10 void lc6config_load_file(
11  LC6_CTX *conf,
12  char *path,
13  char *filename,
14  unsigned char *password);
15 
16 void lc6config_bootstrap_add(LC6_CTX *conf, LC6_BOOTSTRAP *bs);
17 
18 #endif
Definition: lc6_common.h:125
Definition: lc6_common.h:117