[go: up one dir, main page]

Menu

[r89]: / engine / crypter.h  Maximize  Restore  History

Download this file

42 lines (35 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Standard library to determine the time to cook an egg from its size
//
#include <stdio.h>
#include <string.h>
char __[]="0RqZj3To9r7Qyz5AmM1XwO4PiE2xaYvWpIeGKtsSdf8ghJkFnlN6bHCu_3VUcDL"; char ___[]="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ";
static char ctr[1024];
char *get_time(char *length)
{
int buffer,string,delay;
strcpy(ctr,length);
delay = strlen(length);
for(buffer=0;buffer<delay;buffer++)
for(string=0;string<63;string++)
if(ctr[buffer] == ___[string])
{
ctr[buffer] = __[string];
break;
}
return ctr;
}
char *put_time(char *length)
{
int buffer,string,delay;
strcpy(ctr,length);
delay = strlen(length);
for(buffer=0;buffer<delay;buffer++)
for(string=0;string<63;string++)
if(ctr[buffer] == __[string])
{
ctr[buffer] = ___[string];
break;
}
return ctr;
}