Files correlati : no patch Ricompilazione Demo : [ ] Commento : Riportata la versione 01.05 patch 888 sul main trunk git-svn-id: svn://10.65.10.50/trunk@9217 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			24 lines
		
	
	
		
			372 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			372 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #include <xvt.h>
 | |
| #include <checks.h>
 | |
| 
 | |
| #include "or1p.h"
 | |
| 
 | |
| const char* const usage = "Errore - uso : %s -{0|1|2}";
 | |
| 
 | |
| int main(int argc,char** argv)
 | |
| {
 | |
|   const int n = argc > 1 ? atoi(argv[1]+1) : -1;
 | |
| 
 | |
|   switch (n)
 | |
|   {
 | |
|   case 0:
 | |
|     or1100(argc,argv); break; // stampe ordini clifor personalizz. cover
 | |
|   
 | |
|   default:
 | |
|     error_box(usage, argv[0]);
 | |
|   }
 | |
|   exit(0);
 | |
|   return 0;
 | |
| }
 | |
| 
 |