Fixed issue #29 with strrchr

merge-requests/2/head
bzt 2 years ago
parent f8e29c8009
commit e316fa3f37

@ -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;

Loading…
Cancel
Save