16 lines
207 B
C++
Executable File
16 lines
207 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "db2.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int n = argc > 1 ? (argv[1][1]-'0') : 0;
|
|
switch(n)
|
|
{
|
|
case 3 : db2400(argc, argv);
|
|
default: break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|