Files
cbindgen/tests/expectations/constant.c
T
2017-11-09 18:04:22 -05:00

16 lines
186 B
C

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