divifetch/modules/hello_world_cpp/module.h

11 lines
237 B
C

#ifndef MODULE_HELLO_WORLD_CPP_H
#define MODULE_HELLO_WORLD_CPP_H
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
const char *hello_world_cpp_module_preset(char *result, size_t result_size);
#ifdef __cplusplus
}
#endif
#endif