8 lines
78 B
C
8 lines
78 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
typedef struct {
|
||
|
|
int a;
|
||
|
|
} Foo;
|
||
|
|
|
||
|
|
extern void print_foo(Foo* f);
|