Fixed issue #29 with strrchr

This commit is contained in:
bzt 2022-02-16 22:52:28 +01:00
parent f8e29c8009
commit e316fa3f37
1 changed files with 2 additions and 2 deletions

View File

@ -195,9 +195,9 @@ char_t *strrchr(const char_t *s, int c)
char_t *e;
if(s) {
e = (char_t*)s + strlen(s) - 1;
while(s < e) {
while(s <= e) {
if(*e == (char_t)c) return e;
s--;
e--;
}
}
return NULL;