/*------------------------------------------------------------\ | | | This file is part of the Alliance CAD System Copyright | | (C) Laboratoire LIP6 - Département ASIM Universite P&M Curie| | | | Home page : http://www-asim.lip6.fr/alliance/ | | E-mail : mailto:alliance-users@asim.lip6.fr | | | | This progam is free software; you can redistribute it | | and/or modify it under the terms of the GNU Library General| | Public License as published by the Free Software Foundation | | either version 2 of the License, or (at your option) any | | later version. | | | | Alliance VLSI CAD System is distributed in the hope that | | it will be useful, but WITHOUT ANY WARRANTY; | | without even the implied warranty of MERCHANTABILITY or | | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | | Public License for more details. | | | | You should have received a copy of the GNU General Public | | License along with the GNU C Library; see the file COPYING. | | If not, write to the Free Software Foundation, Inc., | | 675 Mass Ave, Cambridge, MA 02139, USA. | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Tool : CTP | | | | File : main.c | | | | Date : 04.24.02 | | | | Author : Jacomme Ludovic | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Include Files | | | \------------------------------------------------------------*/ # include # include # include "mut.h" # include "aut.h" # include "vex.h" # include "ctl.h" # include "ctp.h" /*------------------------------------------------------------\ | | | Constants | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Types | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Variables | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Usage | | | \------------------------------------------------------------*/ void CtpUsage() { fprintf( stderr, "\t\tctptest [Options] Input_name\n\n" ); fprintf( stdout, "\t\tOptions : -V Sets Verbose mode on\n" ); fprintf( stdout, "\n" ); exit( 1 ); } /*------------------------------------------------------------\ | | | Functions | | | \------------------------------------------------------------*/ int main( argc, argv ) int argc; char *argv[]; { ctlfig_list *CtlFigure; char *InputFileName; int Number; int Index; char Option; int FlagVerbose = 0; int FlagSave = 0; mbkenv(); autenv(); vexenv(); ctlenv(); InputFileName = (char *)0; if ( argc < 2 ) CtpUsage(); for ( Number = 1; Number < argc; Number++ ) { if ( argv[ Number ][ 0 ] == '-' ) { for ( Index = 1; argv[ Number ][ Index ] != '\0'; Index++ ) { Option = argv[ Number ][ Index ]; switch ( Option ) { case 'V' : FlagVerbose = 1; break; default : CtpUsage(); } } } else if ( InputFileName == (char *)0 ) InputFileName = argv[ Number ]; else CtpUsage(); } if ( InputFileName == (char *)0 ) CtpUsage(); fprintf( stdout, "InputFileName %s\n", InputFileName ); CtlFigure = loadctlfig( InputFileName ); if ( FlagVerbose ) viewctlfig( CtlFigure ); delctlfig( CtlFigure->NAME ); return( 0 ); }