16 lines
298 B
C++
16 lines
298 B
C++
|
#include <xvt.h>
|
||
|
|
||
|
#include "ps1002.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
int n = argc > 1 ? atoi(argv[1]+1) : 0;
|
||
|
switch(n)
|
||
|
{
|
||
|
case 0: ps1002100(argc, argv); break; //gestione rapida(?) delle righe documento Euroforesi
|
||
|
default:
|
||
|
ps1002100(argc, argv); break;
|
||
|
}
|
||
|
exit(0);
|
||
|
return 0;
|
||
|
}
|