mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-13 04:27:59 +01:00
9 lines
286 B
C
9 lines
286 B
C
/*! \file config.h
|
|
* \brief Configuration manager headers.
|
|
*/
|
|
|
|
void InitConfig();
|
|
char* GetConfigOption(char* section, char* name);
|
|
char* GetConfigOptionDefault(char* section, char* name, char* def);
|
|
void SetConfigOption(char* section, char* name, char* value);
|
|
void DeinitConfig();
|