6c4b3584d6
Files correlati : no patch Ricompilazione Demo : [ ] Commento : programma incassi CRPA git-svn-id: svn://10.65.10.50/trunk@15942 c028cbd2-c16b-5b4b-a496-9718f37d4682
18 lines
313 B
C++
Executable File
18 lines
313 B
C++
Executable File
#include <xvt.h>
|
|
#include "ps0017.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const char op = argc < 2 ? '0' : argv[1][1];
|
|
switch (op)
|
|
{
|
|
case '0':
|
|
ps0017100(argc,argv);
|
|
break;
|
|
default:
|
|
ps0017100(argc,argv);
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|