ref: 4f8b668dae15c863d7e92f158928d5f62faab3d9
dir: /libc/runestrrchr.c/
#include <u.h>
#include <libc.h>
Rune*
runestrrchr(Rune *s, Rune c)
{
Rune *r;
if(c == 0)
return runestrchr(s, 0);
r = 0;
while(s = runestrchr(s, c))
r = s++;
return r;
}