[libc] Add isspace, isprint, isxdigit implementations.
authorcgyurgyik <gyurgyikcp@gmail.com>
Wed, 5 Aug 2020 14:42:30 +0000 (10:42 -0400)
committercgyurgyik <gyurgyikcp@gmail.com>
Wed, 5 Aug 2020 14:51:43 +0000 (10:51 -0400)
commit1fdab96130fc86f2635d26b617adf10608b8e63b
treeaa0d4dd1e5e1636f2794e7452b26f740b1f32c9e
parent6a06c7a0a7688ce142865e92d879b8bece79de7a
[libc] Add isspace, isprint, isxdigit implementations.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D85270
14 files changed:
libc/config/linux/aarch64/entrypoints.txt
libc/config/linux/x86_64/entrypoints.txt
libc/spec/stdc.td
libc/src/ctype/CMakeLists.txt
libc/src/ctype/isprint.cpp [new file with mode: 0644]
libc/src/ctype/isprint.h [new file with mode: 0644]
libc/src/ctype/isspace.cpp [new file with mode: 0644]
libc/src/ctype/isspace.h [new file with mode: 0644]
libc/src/ctype/isxdigit.cpp [new file with mode: 0644]
libc/src/ctype/isxdigit.h [new file with mode: 0644]
libc/test/src/ctype/CMakeLists.txt
libc/test/src/ctype/isprint_test.cpp [new file with mode: 0644]
libc/test/src/ctype/isspace_test.cpp [new file with mode: 0644]
libc/test/src/ctype/isxdigit_test.cpp [new file with mode: 0644]