mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
22 lines
259 B
C
22 lines
259 B
C
|
#ifndef WF_CORE_STRING_H
|
||
|
#define WF_CORE_STRING_H
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#include <stdarg.h>
|
||
|
#else
|
||
|
#include <cstdarg>
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern char * wf_create_string(char const * format, ...);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|