You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfused/src/webfused/config/factory.h

22 lines
293 B

#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