Files
cbindgen/tests/expectations/constant.cpp
T
2019-01-03 09:46:55 -06:00

18 lines
206 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
static const int32_t FOO = 10;
static const float ZOM = 3.14;
struct Foo {
int32_t x[FOO];
};
extern "C" {
void root(Foo x);
} // extern "C"