================== COM_MatchToken ================== */
| 477 | ================== |
| 478 | */ |
| 479 | void COM_MatchToken( const char **buf_p, const char *match ) { |
| 480 | const char *token; |
| 481 | |
| 482 | token = COM_Parse( buf_p ); |
| 483 | if ( strcmp( token, match ) ) |
| 484 | { |
| 485 | Com_Error( ERR_DROP, "MatchToken: %s != %s", token, match ); |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | |
| 490 | /* |
no test coverage detected