Files correlati :in0.exe Ricompilazione Demo : [ ] Commento : Creati tracciati record e relativi programmi di gestione INTRA git-svn-id: svn://10.65.10.50/trunk@7839 c028cbd2-c16b-5b4b-a496-9718f37d4682
16 lines
324 B
C++
Executable File
16 lines
324 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "in0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int n = (argc > 1) ? (argv[1][1]-'0') : 0;
|
|
switch (n)
|
|
{
|
|
case 5 : is0600(argc, argv); break; // riepiloghi
|
|
case 6 : is0700(argc, argv); break; // rettifiche
|
|
default: is0500(argc, argv); break; // movimenti
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
} |