add source.c (clean representation of the binary)
This commit is contained in:
parent
abba9a8143
commit
9e787cb6b9
23
level2/source.c
Normal file
23
level2/source.c
Normal file
@ -0,0 +1,23 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
static void p(void)
|
||||
{
|
||||
uint uwu;
|
||||
char buf[76];
|
||||
|
||||
fflush(stdout);
|
||||
gets(buf);
|
||||
printf("(%p\n)", uwu);
|
||||
exit(1);
|
||||
puts(buf);
|
||||
strdup(buf);
|
||||
return;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
p();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user