blob: b8badb137e6ef52fc5d07df866d93f10b00af17b [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
source_set("string") {
sources = [
"memchr.c",
"memcmp.c",
"memmove.c",
"strcat.c",
"strchr.c",
"strcmp.c",
"strcoll.c",
"strcpy.c",
"strlcat.c",
"strlcpy.c",
"strlen.c",
"strncat.c",
"strncmp.c",
"strncpy.c",
"strnicmp.c",
"strnlen.c",
"strpbrk.c",
"strrchr.c",
"strspn.c",
"strstr.c",
"strtok.c",
"strxfrm.c",
]
deps = [
"$zx/kernel/lib/libc:ctype",
"arch/$zircon_cpu",
]
}