2006-07-11 13:10:51 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
#include "tp0.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
const int n = argc > 1 ? argv[1][1]-'0' : 0;
|
|
|
|
switch (n)
|
|
|
|
{
|
2013-03-03 21:49:23 +00:00
|
|
|
case 1: tp0200(argc, argv); break; //tabelle PACK
|
|
|
|
case 8: tp0900(argc, argv); break; //dichiarazione CONAI
|
|
|
|
default: tp0100(argc, argv); break; //trasferimento PACK
|
2006-07-11 13:10:51 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|