Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Paths
| Differential D85059
[libc] Add implementations for isblank, iscntrl, isgraph, ispunct. ClosedPublic Authored by cgyurgyik on Jul 31 2020, 4:48 PM.
Details
Diff Detail
Event TimelineThis revision is now accepted and ready to land.Aug 4 2020, 11:25 AM This revision was landed with ongoing or failed builds.Aug 4 2020, 12:17 PM Closed by commit rG6cd50e7b75ed: [libc] Add implementations for isblank, iscntrl, isgraph, ispunct. (authored by cgyurgyik). · Explain Why This revision was automatically updated to reflect the committed changes. cgyurgyik marked an inline comment as done.
Revision Contents
Diff 282994 libc/config/linux/aarch64/entrypoints.txt
libc/config/linux/api.td
libc/config/linux/x86_64/entrypoints.txt
libc/spec/stdc.td
libc/src/ctype/CMakeLists.txt
libc/src/ctype/ctype_utils.h
libc/src/ctype/isalnum.cpp
libc/src/ctype/isblank.h
libc/src/ctype/isblank.cpp
libc/src/ctype/iscntrl.h
libc/src/ctype/iscntrl.cpp
libc/src/ctype/isgraph.h
libc/src/ctype/isgraph.cpp
libc/src/ctype/ispunct.h
libc/src/ctype/ispunct.cpp
libc/test/src/ctype/CMakeLists.txt
libc/test/src/ctype/isblank_test.cpp
libc/test/src/ctype/iscntrl_test.cpp
libc/test/src/ctype/isgraph_test.cpp
libc/test/src/ctype/ispunct_test.cpp
|
I should have said said this earlier: seems to me like all the functions in cytype_utils.h can take const unsigned char argument.