mirror of https://github.com/0intro/conterm
16 lines
182 B
C
16 lines
182 B
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;
|
||
|
}
|