[libcxx-commits] [libcxx] [libc++] Implement a libc++ private version of isascii (PR #122361)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jan 10 06:20:15 PST 2025
================
@@ -516,6 +516,8 @@ protected:
};
#endif // _LIBCPP_HAS_WIDE_CHARACTERS
+inline _LIBCPP_HIDE_FROM_ABI int __libcpp_isascii(int __c) { return (__c & ~0x7F) == 0; }
----------------
ldionne wrote:
Ok, I am fine with that.
https://github.com/llvm/llvm-project/pull/122361
More information about the libcxx-commits
mailing list