Commit f7a2283e authored by Dick Hollenbeck's avatar Dick Hollenbeck

eliminate a copying operation

parent 2fd7f4ca
...@@ -42,7 +42,7 @@ int ReadDelimitedText( char* dest, char* source, int NbMaxChar ) ...@@ -42,7 +42,7 @@ int ReadDelimitedText( char* dest, char* source, int NbMaxChar )
*/ */
char* StrPurge( char* text ) char* StrPurge( char* text )
{ {
const char whitespace[] = " \t\n\r\f\v"; static const char whitespace[] = " \t\n\r\f\v";
if( text ) if( text )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment