File: cplusplus.h

package info (click to toggle)
cmark-gfm 0.28.3.gfm.19-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,924 kB
  • sloc: ansic: 10,367; python: 1,009; makefile: 190; cpp: 23; perl: 21; ruby: 11; sh: 4
file content (16 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (11)
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