=================== MatchAndAppendToken =================== */
| 352 | =================== |
| 353 | */ |
| 354 | static void MatchAndAppendToken( idLexer &src, const char *match ) { |
| 355 | if ( !src.ExpectTokenString( match ) ) { |
| 356 | return; |
| 357 | } |
| 358 | // a matched token won't need a leading space |
| 359 | idStr::Append( parseBuffer, MAX_IMAGE_NAME, match ); |
| 360 | } |
| 361 | |
| 362 | /* |
| 363 | =================== |
no test coverage detected