mirror of https://github.com/tongzx/nt5src
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
25 lines
491 B
/*
|
|
* rct09Feb93: removed # as a comment delimeter
|
|
* mholly06Oct98 : removed dead code, macros, and #defines - are left with
|
|
* only the StripTrailingWhiteSpace function
|
|
*
|
|
*/
|
|
// This is the header module for the Scanner:
|
|
// Included here are the exported function prototypes,
|
|
// symbol definitions, and macros.
|
|
//
|
|
// R. Thurston
|
|
//
|
|
//
|
|
|
|
#ifndef __SCAN_H
|
|
#define __SCAN_H
|
|
|
|
// Prototypes...
|
|
|
|
void StripTrailingWhiteSpace(char * aString);
|
|
|
|
|
|
#endif
|
|
|
|
|