version 1.5 | | version 1.6 |
---|
| | |
/* | | /* |
* static char *rcsid_player_c = | | * static char *rcsid_player_c = |
* "$Id: re-cmp.c,v 1.5 2001/02/23 06:06:35 mwedel Exp $"; | | * "$Id: re-cmp.c,v 1.6 2001/04/13 05:19:23 mwedel Exp $"; |
*/ | | */ |
| | |
| | |
| | |
re_token_depth = 0; | | re_token_depth = 0; |
re_substr[0] = next_regexp; | | re_substr[0] = next_regexp; |
| | |
matched = re_match_token(*str, re_token[0]); | | while (*str != '\0' && !(matched = re_match_token(*str, re_token[0]))) |
| | str++; |
| | |
if (matched && *next_regexp == 0) | | if (matched && *next_regexp == 0) |
return str; | | return str; |
| | |