mirror of
https://github.com/falk-werner/webfused
synced 2024-10-27 20:44:08 +00:00
22 lines
293 B
C
22 lines
293 B
C
|
#ifndef WFD_CONFIG_FACTORY_H
|
||
|
#define WFD_CONFIG_FACTORY_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern struct wfd_config *
|
||
|
wfd_config_load_file(
|
||
|
char const * filename);
|
||
|
|
||
|
extern struct wfd_config *
|
||
|
wfd_config_load_string(
|
||
|
char const * contents);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|