You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
893 B

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