1cd8e24a94
Files correlati : Ricompilazione Demo : [ ] Commento :aggiunto il modulo TC nella 4.0 git-svn-id: svn://10.65.10.50/trunk@14826 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
271 B
C++
Executable File
21 lines
271 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "tc1.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
switch (op)
|
|
{
|
|
case 0: tc1100(argc,argv); break; //trasferimento zucchetti
|
|
default: tc1100(argc,argv); break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|