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.

36 lines
1.2 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation
  3. Module Name:
  4. isprint.c
  5. Abstract:
  6. Author:
  7. Jay Krell (JayKrell) November 2001
  8. Revision History:
  9. --*/
  10. //
  11. // FUTURE:2003-03-12:jonwis - We could reduce our final size if we packed these into
  12. // DWORDs rather than a char array. This is 256 bytes, the DWORD array
  13. // would be (256/32) = 8 dwords long, for 256 bits (32 bytes). The code
  14. // to introspect on this array is in debug.cpp in one place, so we'd probably
  15. // end up using ~64 bytes (32 + extra code) rather than 256. Not sure if
  16. // it's worth it.
  17. //
  18. const extern char FusionpIsPrint_Data[256] =
  19. {
  20. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,
  21. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  22. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  23. 1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  24. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  25. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  26. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  27. };