#include "internal.h" byte* utf8·findlastrune(byte* s, long c) { long c1; rune r; byte *l; if (c < RuneSync) return strrchr(s, c); l = nil; for(;;){ c1 = *(ubyte*)s; if (c1 < RuneSelf) { if (c1 == 0) return l; if (c1 == c) l = s; s++; continue; } c1 = utf8·bytetorune(&r, s); if (r == c) l = s; s += c1; } return nil; }