ref: b305ea4a3daffc7cfc3ca1b24b1b098cd9f14590
dir: /sys/src/libc/port/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;
}