campo-sirio/ve/ve4.cpp

21 lines
339 B
C++
Raw Normal View History

#include <xvt.h>
#include <checks.h>
#include "ve4.h"
int main(int argc, char** argv)
{
const int k = argc > 1 ? atoi(argv[1]+1) : 0;
switch(k)
{
case 0:
ve4100(argc, argv);
break;
default:
error_box("Applicazione sconosciuta: %s %s.", argv[0], argv[1]);
break;
}
return 0;
}