Aggiunta stampa tabelle

git-svn-id: svn://10.65.10.50/trunk@4466 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
augusto 1997-05-30 15:50:59 +00:00
parent 209f44601c
commit 449eedaf0b
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,7 @@
#include <xvt.h>
#include <strings.h>
//
// Gestione tabelle e Parametri di magazzino
#include "mg0.h"
#define usage "Error - usage : %s -{0|1|2|3|4|5|6|7|8|9}"
@ -12,8 +13,10 @@ int main(int argc, char** argv)
switch (r)
{
case 0:
rt = mg0100(argc,argv) ; break;
case 0: // gestione tabelle
rt = mg0100(argc,argv) ; break;
case 1: // stampa tabelle
rt = mg0200(argc,argv) ; break;
default:
error_box(usage, argv[0]) ; break;
}

View File

@ -2,5 +2,6 @@
#define __MG0_H
int mg0100(int argc, char* argv[]);
int mg0200(int argc, char* argv[]);
#endif // __MG0_H