Download this file
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; }