21 lines
236 B
C
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();
|