7 lines
98 B
C
7 lines
98 B
C
#include <stdio.h>
|
|
#include "foo.h"
|
|
|
|
void print_foo(Foo* f) {
|
|
printf("print_foo: %d\n", f->a);
|
|
}
|