=================== AppendToken =================== */
| 339 | =================== |
| 340 | */ |
| 341 | static void AppendToken( idToken &token ) { |
| 342 | // add a leading space if not at the beginning |
| 343 | if ( parseBuffer[0] ) { |
| 344 | idStr::Append( parseBuffer, MAX_IMAGE_NAME, " " ); |
| 345 | } |
| 346 | idStr::Append( parseBuffer, MAX_IMAGE_NAME, token.c_str() ); |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | =================== |
no test coverage detected