aboutsummaryrefslogtreecommitdiff
path: root/sys/libunicode/find.c
blob: 659ab5bbc205a9d27e3707b1bd8e2c5442ce99cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "internal.h"

byte*
utf8·find(byte* s, rune c)
{
    long c1;
    rune r;
    int  n;

    if(c < RuneSync)
        return strchr(s, c);

    for(;;){
        c1 = *(ubyte*)s;
        if(c1 < RuneSelf) {
            if(c1 == 0) return nil;
            if(c1 == c) return s;
            s++;
            continue;
        }
        n = utf8·decode(s, &r);

        if(r == c)
            return s;

        s += n;
    }

    return nil;
}