2003-12-10 12:10:52 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
|
|
|
|
#include "cm1.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
|
|
switch (op)
|
|
|
|
{
|
2004-11-30 22:02:59 +00:00
|
|
|
case 1: cm1100(argc,argv); break; //..per adesso c'e' solo lui...
|
2003-12-10 12:10:52 +00:00
|
|
|
default: cm1100(argc,argv); break; //stampa pagato per commessa
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|