2007-01-31 16:15:26 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
|
|
|
|
#include "tc9.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
|
|
switch (op)
|
|
|
|
{
|
2008-03-11 15:50:42 +00:00
|
|
|
case 0: tc9100(argc,argv); break; // esiste sulla 4.0 Invio a Proforma
|
2008-12-19 18:00:23 +00:00
|
|
|
case 1: tc9200(argc,argv); break; // esiste dalla 4.0 Invio a ???
|
|
|
|
case 2: tc9300(argc,argv); break; // esiste dalla 4.0 Invio a Sispac/Cosmo
|
2008-12-21 19:26:09 +00:00
|
|
|
case 3: tc9400(argc,argv); break; // esiste dalla 4.0 Tabelle Sispac/Cosmo
|
2007-01-31 16:15:26 +00:00
|
|
|
default: tc9100(argc,argv); break;
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|