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