26 lines
347 B
C++
Executable File
26 lines
347 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "ve0.h"
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
int rt = -1;
|
|
const int r = (argc > 1) ? atoi( &argv[1][1] ) : 1;
|
|
|
|
switch (r)
|
|
{
|
|
case 2:
|
|
rt = ve0200( argc, argv );
|
|
break;
|
|
case 3:
|
|
rt = ve0300( argc, argv );
|
|
break;
|
|
default:
|
|
rt = ve0100( argc, argv );
|
|
break;
|
|
}
|
|
exit(0);
|
|
return rt;
|
|
}
|
|
|