[libc] Add strspn implementation and std::bitset
authorcgyurgyik <gyurgyikcp@gmail.com>
Wed, 5 Aug 2020 20:36:52 +0000 (16:36 -0400)
committercgyurgyik <gyurgyikcp@gmail.com>
Wed, 5 Aug 2020 20:48:38 +0000 (16:48 -0400)
commitf3b41502554f2948ad00531dde7c3f53973de960
treead092e2600416195455a040926b8058daa4bec08
parent40470eb27a5c97b01e89d8825626487b0682abec
[libc] Add strspn implementation and std::bitset

Reviewed By: sivachandra, abrachet

Differential Revision: https://reviews.llvm.org/D85103
12 files changed:
libc/config/linux/aarch64/entrypoints.txt
libc/config/linux/x86_64/entrypoints.txt
libc/src/string/CMakeLists.txt
libc/src/string/strspn.cpp [new file with mode: 0644]
libc/src/string/strspn.h [new file with mode: 0644]
libc/test/src/string/CMakeLists.txt
libc/test/src/string/strspn_test.cpp [new file with mode: 0644]
libc/test/utils/CMakeLists.txt
libc/test/utils/CPP/CMakeLists.txt [new file with mode: 0644]
libc/test/utils/CPP/bitset_test.cpp [new file with mode: 0644]
libc/utils/CPP/Bitset.h [new file with mode: 0644]
libc/utils/CPP/CMakeLists.txt