subrepo: subdir: "deps/cmark" merged: "5ba25ff" upstream: origin: "https://github.com/commonmark/cmark.git" branch: "0.30.3" commit: "5ba25ff" git-subrepo: version: "0.4.6" commit: "d4444b563"
17 lines
218 B
C
17 lines
218 B
C
#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
|