BUILD 679 Bytes
Newer Older
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
31
32
33
34
licenses(["notice"])

cc_library(
    name = "utf",
    srcs = [
        "rune.c",
        "runestrcat.c",
        "runestrchr.c",
        "runestrcmp.c",
        "runestrcpy.c",
        "runestrdup.c",
        "runestrecpy.c",
        "runestrlen.c",
        "runestrncat.c",
        "runestrncmp.c",
        "runestrncpy.c",
        "runestrrchr.c",
        "runestrstr.c",
        "runetype.c",
        "utfecpy.c",
        "utflen.c",
        "utfnlen.c",
        "utfrrune.c",
        "utfrune.c",
        "utfutf.c",
    ],
    hdrs = [
        "runetypebody.c",
        "utf.h",
        "utfdef.h",
    ],
    includes = ["."],
    visibility = ["//visibility:public"],
)