Source code of Windows XP (NT5)
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.

25 lines
491 B

  1. /*
  2. * rct09Feb93: removed # as a comment delimeter
  3. * mholly06Oct98 : removed dead code, macros, and #defines - are left with
  4. * only the StripTrailingWhiteSpace function
  5. *
  6. */
  7. // This is the header module for the Scanner:
  8. // Included here are the exported function prototypes,
  9. // symbol definitions, and macros.
  10. //
  11. // R. Thurston
  12. //
  13. //
  14. #ifndef __SCAN_H
  15. #define __SCAN_H
  16. // Prototypes...
  17. void StripTrailingWhiteSpace(char * aString);
  18. #endif