1
0
mirror of https://github.com/falk-werner/webfused synced 2024-10-27 20:44:08 +00:00
falk-werner_webfused/src/webfused/config/factory.h

22 lines
293 B
C
Raw Normal View History

2020-03-08 15:14:55 +00:00
#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