radare2/shlr/tcc/test.cparse
pancake 8d8c9f4ee5 Initial import of the new cparse engine using sdb and tcc
* There's still lot of work to do, this is just the base
2013-08-01 00:39:19 +02:00

20 lines
238 B
Plaintext

struct Cow {
int cowa;
int cowb;
};
struct Foo {
int a;
char bu[10];
char bu2[];
char *bu3;
const char *b;
struct Cow c;
int d;
};
struct Foo foot = {0};
int boo = 3;
int main(int argc, char **argv) {
puts ("Hello World\n");
}