1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// cs/labs/c/hello_world.h
#ifndef CS_LABS_C_HELLO_WORLD_H
#define CS_LABS_C_HELLO_WORLD_H
#ifdef __cplusplus
extern "C" {
#endif
const char *say_hello(void);
#ifdef __cplusplus
}
#endif
#endif // CS_LABS_C_HELLO_WORLD_H