kern/lib/c/string/CMakeLists.txt
fef 0f9e9f91a6
libc: port FreeBSD string library routines
Oh my fucking god this was by far the most awful
and boring and tedious day in my entire life.

Also, dear FreeBSD people: please don't sue me.
I tried really hard to comply with all the
copyright stuff, but it is absolutely possible i
made a mistake.  Just DM me and i'll do everything
in my power to fix it, even if that means
releasing entire portions of GayBSD under the BSD
license.  I don't care, i just want stuff to work.

(i'm including this message to use it as possible
evidence in case i get sued to show my good will)
2021-10-10 05:41:16 +02:00

83 lines
1.5 KiB
CMake

# See the end of this file for copyright and license terms.
target_sources(c PRIVATE
bcmp.c
bcopy.c
bzero.c
ffs.c
ffsl.c
ffsll.c
fls.c
flsl.c
flsll.c
memccpy.c
memchr.c
memcmp.c
memcpy.c
memmem.c
memmove.c
memrchr.c
memset.c
stpcpy.c
stpncpy.c
strcat.c
strchr.c
strchrnul.c
strcmp.c
strcpy.c
strcspn.c
strdup.c
strlcat.c
strlcpy.c
strlen.c
strncat.c
strncmp.c
strncpy.c
strndup.c
strnlen.c
strnstr.c
strpbrk.c
strrchr.c
strsep.c
strspn.c
strstr.c
strtok.c
swab.c
wcpcpy.c
wcpncpy.c
wcscat.c
wcschr.c
wcscmp.c
wcscpy.c
wcscspn.c
wcsdup.c
wcslcat.c
wcslcpy.c
wcslen.c
wcsncat.c
wcsncmp.c
wcsncpy.c
wcsnlen.c
wcspbrk.c
wcsrchr.c
wcsspn.c
wcsstr.c
wcstok.c
wmemchr.c
wmemcmp.c
wmemcpy.c
wmemmove.c
wmemset.c
)
# This file is part of GayBSD.
# Copyright (c) 2021 fef <owo@fef.moe>.
#
# GayBSD is nonviolent software: you may only use, redistribute, and/or
# modify it under the terms of the Cooperative Nonviolent Public License
# (CNPL) as found in the LICENSE file in the source code root directory
# or at <https://git.pixie.town/thufie/npl-builder>; either version 7
# of the license, or (at your option) any later version.
#
# GayBSD comes with ABSOLUTELY NO WARRANTY, to the extent
# permitted by applicable law. See the CNPL for details.