mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-18 03:44:28 +00:00
8d8c9f4ee5
* There's still lot of work to do, this is just the base
20 lines
238 B
Plaintext
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");
|
|
}
|