834bc1e30d
Files correlati : Ricompilazione Demo : [ ] Commento : Correzzione relaitive al riporto precedente git-svn-id: svn://10.65.10.50/trunk@9672 c028cbd2-c16b-5b4b-a496-9718f37d4682
46 lines
402 B
C++
Executable File
46 lines
402 B
C++
Executable File
#include <xvt.h>
|
|
#include <checks.h>
|
|
|
|
#include "ba6.h"
|
|
|
|
#define usage "Errore - uso : %s -[0,1]"
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const int r = (argc > 1) ? atoi(&argv[1][1]) : -1;
|
|
|
|
switch (r)
|
|
{
|
|
case 0:
|
|
ba6100(argc,argv) ; break;
|
|
case 1:
|
|
ba6200(argc,argv) ; break;
|
|
default:
|
|
error_box(usage, argv[0]) ; break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|