Files
cbindgen/tests/expectations/docstyle_c99.cpp
T
Ingvar Stepanyan 944ecb958e Add C99 doc comment style
In modern C (post-C99) it's common to just use `// double-slash comments`, but currently cbindgen provides only `/* block-comment */` and `/// triple-slash comment` variants.
2019-04-14 16:20:07 +02:00

11 lines
127 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
extern "C" {
// The root of all evil.
void root();
} // extern "C"