| 17 | namespace LIBC_NAMESPACE_DECL { |
| 18 | |
| 19 | LLVM_LIBC_FUNCTION(char *, strcpy, |
| 20 | (char *__restrict dest, const char *__restrict src)) { |
| 21 | LIBC_CRASH_ON_NULLPTR(dest); |
| 22 | size_t size = internal::string_length(src) + 1; |
| 23 | inline_memcpy(dest, src, size); |
| 24 | return dest; |
| 25 | } |
| 26 | |
| 27 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no test coverage detected