Name: Anonymous 2007-09-04 15:57 ID:qFo7mjwJ
I'll tell you how right after my program has finished determining if it will halt or not
void
extract_key(uint64_t key, char* const ckey)
{
unsigned int i;
for (i = 0; i < 8; ++i) {
ckey[i] = charset[key & 0x7f];
key = key >> 7;
}
}
def LaunchProgram(program):
handler = Launch(program)
sleep(10000)
KillProcess(handler)
def WillProgramHalt(program):
return True