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

21 lines
236 B
C

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
struct Bar;
typedef struct Bar Bar;
typedef struct {
} Foo;
extern const Bar BAR;
extern Foo FOO;
extern const int32_t NUMBER;
extern const char* STRING;
void root();