17 lines
177 B
C
17 lines
177 B
C
#ifndef _C_WRAPPER_H_
|
|
#define _C_WRAPPER_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void cpp_main();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _C_WRAPPER_H_
|