[go: up one dir, main page]

Menu

[r9]: / engine / crypter.c  Maximize  Restore  History

Download this file

14 lines (11 with data), 214 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#include <stdio.h>
#include "crypter.h"
int main(int argc, char *argv[])
{
char egg_size[1024];
printf("Enter the text:\n");
//gets(egg_size);
scanf("%s",egg_size);
printf("%s\n",get_time(egg_size));
return 1;
}