Files
cbindgen/tests/expectations/both/namespaces_constant.c
T
IGI-111 d32127e3d7 Fix #229
Place constants back inside namespace and add a test to make sure they
are namespaced correctly.
2018-10-24 11:50:03 -05:00

14 lines
161 B
C

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#define FOO 10
#define ZOM 3.14
typedef struct Foo {
int32_t x[FOO];
} Foo;
void root(Foo x);