brintos

brintos / llvm-project-archived public Read only

0
0
Text · 163 B · 5a13f1d Raw
18 lines · c
1#include "foo.h"2 3struct bar4{5    int a;6    int b;7};8 9int10main (int argc, char const *argv[])11{12    struct bar b= { 1, 2 };13    14    foo (&b);15 16    return 0;17}18