summaryrefslogtreecommitdiffstats
path: root/src/map/mio/mioRead.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-07-25 20:02:56 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-07-25 20:02:56 -0700
commit7d81490fe66c0deda91ef04be6d1f79be7025c6a (patch)
treeeca04b4414d77d187cd81e0638569e66c9010069 /src/map/mio/mioRead.c
parent9bfe2ad73aaa4d03bb1273950f873e3adb83fb29 (diff)
downloadabc-7d81490fe66c0deda91ef04be6d1f79be7025c6a.tar.gz
abc-7d81490fe66c0deda91ef04be6d1f79be7025c6a.tar.bz2
abc-7d81490fe66c0deda91ef04be6d1f79be7025c6a.zip
Generating abstraction of standard cell library.
Diffstat (limited to 'src/map/mio/mioRead.c')
-rw-r--r--src/map/mio/mioRead.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/mio/mioRead.c b/src/map/mio/mioRead.c
index 860ce39c..b5b334da 100644
--- a/src/map/mio/mioRead.c
+++ b/src/map/mio/mioRead.c
@@ -207,7 +207,7 @@ Mio_Library_t * Mio_LibraryReadOne( char * FileName, int fExtendedFormat, st__ta
pLib = Mio_LibraryReadBuffer( pBuffer, fExtendedFormat, tExcludeGate, fVerbose );
ABC_FREE( pBuffer );
if ( pLib )
- pLib->pName = Mio_UtilStrsav( FileName );
+ pLib->pName = Abc_UtilStrsav( FileName );
return pLib;
}
@@ -340,7 +340,7 @@ Mio_Gate_t * Mio_LibraryReadGate( char ** ppToken, int fExtendedFormat )
// read the name
pToken = strtok( NULL, " \t\r\n" );
- pGate->pName = Mio_UtilStrsav( pToken );
+ pGate->pName = Abc_UtilStrsav( pToken );
// read the area
pToken = strtok( NULL, " \t\r\n" );
@@ -407,7 +407,7 @@ Mio_Pin_t * Mio_LibraryReadPin( char ** ppToken, int fExtendedFormat )
// read the name
pToken = strtok( NULL, " \t\r\n" );
- pPin->pName = Mio_UtilStrsav( pToken );
+ pPin->pName = Abc_UtilStrsav( pToken );
// read the pin phase
pToken = strtok( NULL, " \t\r\n" );
@@ -672,7 +672,7 @@ int Mio_LibraryReadExclude( char * ExcludeFile, st__table * tExcludeGate )
while (1 == fscanf( pEx, "%127s", buffer ))
{
//printf ("Read: '%s'\n", buffer );
- st__insert( tExcludeGate, Mio_UtilStrsav( buffer ), (char *)0 );
+ st__insert( tExcludeGate, Abc_UtilStrsav( buffer ), (char *)0 );
nDel++;
}