f565fc1dc8
Files correlati : Quelli delle patch 1.7 Ricompilazione Demo : [ ] Commento : Riportata la versione 1.7 A.G.A. e Partners alla patch 530 git-svn-id: svn://10.65.10.50/trunk@11331 c028cbd2-c16b-5b4b-a496-9718f37d4682
22 lines
318 B
C++
Executable File
22 lines
318 B
C++
Executable File
#include <xvt.h>
|
|
#include <stdlib.h>
|
|
#include <checks.h>
|
|
|
|
#include "scp0.h"
|
|
|
|
#define usage "Errore - uso : scp0 -{0}"
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const int n = (argc > 1) ? (atoi(&argv[1][1])) : 0;
|
|
|
|
switch(n)
|
|
{
|
|
case 0:
|
|
scp0100(argc,argv); break;
|
|
default:
|
|
error_box(usage);
|
|
}
|
|
return 0;
|
|
}
|