Ejemplo n.º 1
0
Archivo: symbol.c Proyecto: 0XCC1/tiger
S_table S_empty(void) 
{ 
  return TAB_empty();
}
Ejemplo n.º 2
0
//-----------------------------------------------------------------------------
// name: Temp_empty( )
// desc: ...
//-----------------------------------------------------------------------------
Temp_Map Temp_empty( void )
{
    return new_map( TAB_empty( ), NULL );
}
Ejemplo n.º 3
0
static TAB_table LNTable() {
	if (_lntable == NULL){
		_lntable = TAB_empty();
	}
	return _lntable;
}