mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 11:04:52 -08:00
52 lines
332 B
C++
52 lines
332 B
C++
|
#include "Bloat.cpp"
|
||
|
|
||
|
|
||
|
#ifdef gen_time
|
||
|
#include "gen.cpp"
|
||
|
|
||
|
|
||
|
void case_untyped()
|
||
|
{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
int gen_main()
|
||
|
{
|
||
|
Memory::setup();
|
||
|
|
||
|
log_fmt("\nPress any key after attaching to process\n");
|
||
|
getchar();
|
||
|
|
||
|
gen::init();
|
||
|
|
||
|
case_untyped();
|
||
|
|
||
|
Memory::cleanup();
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#ifdef runtime
|
||
|
int main()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|