2020-09-30 16:53:55 +02:00

26 lines
516 B
C

/*
* 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