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

13 lines
164 B
C

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
typedef struct {
int32_t x;
float y;
} Normal;
extern void bar(Normal a);
extern int32_t foo();