ref: 7a1fe6d6eca745009d9be9ad6f16e45ed2a511ab
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;
}