blob: a9d49a69e2b87fd9d6e795f6834d79bc00aab566 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("ctype") {
configs -= [ "$zx/public/gn/config:user" ]
configs += [ "$zx/third_party/ulib/musl:musl_config" ]
sources = [
"__ctype_b_loc.c",
"__ctype_get_mb_cur_max.c",
"__ctype_tolower_loc.c",
"__ctype_toupper_loc.c",
"isalnum.c",
"isalpha.c",
"isascii.c",
"isblank.c",
"iscntrl.c",
"isdigit.c",
"isgraph.c",
"islower.c",
"isprint.c",
"ispunct.c",
"isspace.c",
"isupper.c",
"iswalnum.c",
"iswalpha.c",
"iswblank.c",
"iswcntrl.c",
"iswctype.c",
"iswdigit.c",
"iswgraph.c",
"iswlower.c",
"iswprint.c",
"iswpunct.c",
"iswspace.c",
"iswupper.c",
"iswxdigit.c",
"isxdigit.c",
"toascii.c",
"tolower.c",
"toupper.c",
"towctrans.c",
"wcswidth.c",
"wctrans.c",
"wcwidth.c",
]
}