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