version 1.13, 2014/01/30 08:30:47
|
version 1.14, 2014/03/03 09:41:09
|
Line 85 const char *cfg_GetError();
|
Line 85 const char *cfg_GetError();
|
/* |
/* |
* cfgInitConfig() - Init config root |
* cfgInitConfig() - Init config root |
* |
* |
* @cfg = Config root | * return: NULL error or !=NULL allocated config root |
* return: -1 error or 0 ok | |
*/ |
*/ |
int cfgInitConfig(cfg_root_t * __restrict cfg); | cfg_root_t *cfgInitConfig(); |
| /* |
| * cfgEndConfig() - Free resources & config root |
| * |
| * @pcfg = Config root |
| * return: none |
| */ |
| void cfgEndConfig(cfg_root_t **pcfg); |
/* |
/* |
* cfgLoadConfig() - Load config from file |
* cfgLoadConfig() - Load config from file |
* |
* |