summaryrefslogtreecommitdiff
path: root/api_test/cplusplus.h
blob: 68edcb20d79751736231e34c43745ce4a648cb5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CMARK_API_TEST_CPLUSPLUS_H
#define CMARK_API_TEST_CPLUSPLUS_H

#include "harness.h"

#ifdef __cplusplus
extern "C" {
#endif

void
test_cplusplus(test_batch_runner *runner);

#ifdef __cplusplus
}
#endif

#endif