Initial commit

This commit is contained in:
2022-07-31 01:22:11 +02:00
parent 80ddc96b9e
commit 35813e2cae
2 changed files with 82 additions and 0 deletions

13
src/cw/cfg.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef _CFG_H
#define _CFG_H
#include <mavl.h>
typedef struct mavl cw_Cfg_t;
cw_Cfg_t * cfg_create();
int cfg_set(cw_Cfg_t *cfg,const char *key, const char *val);
void cw_Cfg_dump(cw_Cfg_t *cfg);
#endif