summaryrefslogtreecommitdiff
path: root/api_test/cplusplus.h
blob: 1f3dd152135480478a4ad399190f7d52ed043616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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