================ @@ -173,5 +173,72 @@ RT_API_ATTRS void ShallowCopy(const Descriptor &to, const Descriptor &from) { ShallowCopy(to, from, to.IsContiguous(), from.IsContiguous()); } +RT_API_ATTRS const char *EnsureNullTerminated( + const char *str, std::size_t length, Terminator &terminator) { + const void *nullTerminatorPos{std::memchr(str, '\0', length)}; + + if (nullTerminatorPos == nullptr) { ---------------- klausler wrote:
`if (std::memchr(str, '\0', length) == nullptr) {` https://github.com/llvm/llvm-project/pull/74077 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits