12 lines
176 B
C
12 lines
176 B
C
/* Package version: 0.1.0 */
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
uint64_t bar;
|
|
} Foo;
|
|
|
|
void doit(const Foo*);
|