mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-02 10:47:31 +02:00
Bug fix in truth table computation.
This commit is contained in:
@@ -634,6 +634,12 @@ static inline void Vec_StrAppend( Vec_Str_t * p, const char * pString )
|
||||
{
|
||||
Vec_StrPrintStr( p, pString );
|
||||
}
|
||||
static inline void Vec_StrCopy( Vec_Str_t * p, const char * pString )
|
||||
{
|
||||
Vec_StrClear( p );
|
||||
Vec_StrAppend( p, pString );
|
||||
Vec_StrPush( p, '\0' );
|
||||
}
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
|
||||
Reference in New Issue
Block a user