campo-sirio/src/ps/ps1004.cpp

15 lines
241 B
C++
Raw Normal View History

#include <xvt.h>
#include "ps1004.h"
int main(int argc, char** argv)
{
int rt = -1;
const int r = (argc > 1) ? atoi(&argv[1][1]) : 1;
switch (r)
{
case 0:
default: rt = ps1004100(argc, argv); break; // Configurazione
}
return rt;
}