1 #ifndef CMARK_API_TEST_CPLUSPLUS_H
2 #define CMARK_API_TEST_CPLUSPLUS_H
3
4 #include "harness.h"
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 void test_cplusplus(test_batch_runner *runner);
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif