blob: dd31bd8747eed8da5cb40d37e9ed3f3c2ef4b696 [file] [log] [blame]
# Copyright 2021 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.
import("../libc.gni")
llvm_libc_source_set("ctype") {
functions = [
"isalnum",
"isalpha",
"isascii",
"isblank",
"iscntrl",
"isdigit",
"isgraph",
"islower",
"isprint",
"ispunct",
"isspace",
"isupper",
"isxdigit",
"toascii",
"tolower",
"toupper",
]
}