Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
408 B

  1. // Copyright (c) 1993-1999 Microsoft Corporation
  2. #include "y1.h"
  3. void
  4. prlook( struct looksets * p )
  5. {
  6. SSIZE_T j, *pp;
  7. pp = p->lset;
  8. if( pp == 0 ) fprintf( foutput, "\tNULL");
  9. else
  10. {
  11. fprintf( foutput, " { " );
  12. TLOOP(j)
  13. {
  14. if( BIT(pp,j) ) fprintf( foutput, "%s ", symnam(j) );
  15. }
  16. fprintf( foutput, "}" );
  17. }
  18. }