1 //===-- Implementation of strndup -----------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "src/string/strndup.h" 10 #include "src/string/memory_utils/memcpy_implementations.h" 11 #include "src/string/string_utils.h" 12 13 #include "src/__support/common.h" 14 15 #include <stddef.h> 16 #include <stdlib.h> 17 18 namespace __llvm_libc { 19 20 LLVM_LIBC_FUNCTION(char *, strndup, (const char *src, size_t size)) { 21 if (src == nullptr) 22 return nullptr; 23 size_t len = internal::string_length(src); 24 if (len > size) 25 len = size; 26 char *dest = reinterpret_cast<char *>(::malloc(len + 1)); 27 if (dest == nullptr) 28 return nullptr; 29 inline_memcpy(dest, src, len + 1); 30 dest[len] = '\0'; 31 return dest; 32 } 33 34 } // namespace __llvm_libc 35