Bug fix in truth table computation.

This commit is contained in:
Alan Mishchenko
2014-10-15 14:26:44 -07:00
parent 70cb236144
commit 3653bf53e9
2 changed files with 15 additions and 11 deletions
+6
View File
@@ -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*************************************************************