blob: 3037175b9d70022b7f2d59e27f310e37f5db7382 [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") {
deps = [
"$zx/third_party/ulib/musl:musl_internal",
]
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",
]
}