campo-sirio/ab/ab0.cpp
nik 41cad56e5e This commit was generated by cvs2svn to compensate for changes in r1834,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.65.10.50/trunk@1835 c028cbd2-c16b-5b4b-a496-9718f37d4682
1995-09-15 14:15:18 +00:00

31 lines
545 B
C++
Executable File

#include <xvt.h>
#include <checks.h>
#include "ab0.h"
#define usage "Error - usage : %s -{0|1|2|3|4|5}"
int main(int argc,char** argv)
{
int n = (argc > 1) ? atoi(argv[1]+1) : -1;
switch (n)
{
case 0:
ab0100(argc,argv); break;
case 1:
ab0200(argc,argv); break;
case 2:
ab0300(argc,argv); break;
// case 3:
// m71310(argc,argv); break;
// case 4:
// m71295(argc,argv); break;
// case 5:
// m71230(argc,argv); break;
default:
error_box(usage, argv[0]) ;
}
return 0;
}