Fixed issue #29 with strrchr

This commit is contained in:
bzt 2022-02-16 22:52:28 +01:00
parent f8e29c8009
commit e316fa3f37

View file

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