/*------------------------------------------------------------\ | | | 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 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 : XSCH | | | | File : Share.c | | | | Authors : Jacomme Ludovic | | | | Date : 01.06.96 | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Include Files | | | \------------------------------------------------------------*/ # include # include # include # include "mut.h" # include "aut.h" # include "mlo.h" # include "scl.h" # include "XSB.h" # include "XSB_share.h" /*------------------------------------------------------------\ | | | Constants | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Types | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Variables | | | \------------------------------------------------------------*/ char XSCH_ACTIVE_NAME_TABLE [ XSCH_MAX_ACTIVE_NAME ] = { 1, 1, 1, 1 }; char XSCH_ACTIVE_LAYER_TABLE [ XSCH_MAX_LAYER ] = { 1, 1, 1, 1, 1 }; char *XschFirstFileName = (char *)NULL; char *XSCH_XMS_FILE_NAME = (char *)NULL; char *XSCH_IN_SCHEM = (char *)NULL; char XSCH_FORCE_DISPLAY = XSCH_FALSE; char XSCH_XOR_CURSOR = XSCH_FALSE; char XSCH_SWITCH_COLOR_MAP = XSCH_FALSE; char XSCH_VECTORIZED_MODE = XSCH_FALSE; /*------------------------------------------------------------\ | | | Functions | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | XschPostTreatString | | | \------------------------------------------------------------*/ char *XschPostTreatString( Text ) char *Text; { char OnlySpace; int Counter; autbegin(); if ( Text != (char *)NULL ) { OnlySpace = 1; for ( Counter = 0; Text[ Counter ]; Counter++ ) { if ( Text[ Counter ] != ' ' ) OnlySpace = 0; } if ( OnlySpace ) Text = (char *)NULL; } autend(); return( Text ); } /*------------------------------------------------------------\ | | | Xschgetenv | | | \------------------------------------------------------------*/ void Xschgetenv() { char *Env; Env = mbkgetenv( "HOME" ); if ( Env == (char *)NULL ) { XSCH_XMS_FILE_NAME = XMS_FILE_NAME; } else { XSCH_XMS_FILE_NAME = (char *)autallocblock( strlen( Env ) + strlen( XMS_FILE_NAME ) + 2 ); strcpy( XSCH_XMS_FILE_NAME, Env ); strcat( XSCH_XMS_FILE_NAME, "/" ); strcat( XSCH_XMS_FILE_NAME, XMS_FILE_NAME ); } XSCH_IN_SCHEM = SCH_IN; }