18 lines
327 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
#include "y1.h"
void prlook( struct looksets *p)
{
register j, *pp;
pp = p->lset;
if( pp == 0 ) fprintf( foutput, "\tNULL");
else
{
fprintf( foutput, " { " );
TLOOP(j)
{
if( BIT(pp,j) ) fprintf( foutput, "%s ", symnam(j) );
}
fprintf( foutput, "}" );
}
}