mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 06:09:50 +00:00
31 lines
357 B
Plaintext
31 lines
357 B
Plaintext
enum {
|
|
FOO = 1,
|
|
BAR = 2,
|
|
COW = 3
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
int write(int fd, char* str, int len);
|
|
|
|
/*
|
|
int main(int argc, char **argv);
|
|
struct Foo foot = {0};
|
|
int boo = 3;
|
|
int main(int argc, char **argv) {
|
|
puts ("Hello World\n");
|
|
}
|
|
*/
|