Buckets:
arudradey/fullhtml-storage / emsdk /upstream /emscripten /system /lib /llvm-libc /src /string /strncpy.cpp
| //===-- Implementation of strncpy -----------------------------------------===// | |
| // | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
| // See https://llvm.org/LICENSE.txt for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| // | |
| //===----------------------------------------------------------------------===// | |
| namespace LIBC_NAMESPACE_DECL { | |
| LLVM_LIBC_FUNCTION(char *, strncpy, | |
| (char *__restrict dest, const char *__restrict src, | |
| size_t n)) { | |
| if (n) { | |
| LIBC_CRASH_ON_NULLPTR(dest); | |
| LIBC_CRASH_ON_NULLPTR(src); | |
| } | |
| size_t i = 0; | |
| // Copy up until \0 is found. | |
| for (; i < n && src[i] != '\0'; ++i) | |
| dest[i] = src[i]; | |
| // When n>strlen(src), n-strlen(src) \0 are appended. | |
| for (; i < n; ++i) | |
| dest[i] = '\0'; | |
| return dest; | |
| } | |
| } // namespace LIBC_NAMESPACE_DECL | |
Xet Storage Details
- Size:
- 1.07 kB
- Xet hash:
- a755b15af5417a765fd914bdf6f4a8ac5b059a4bcc63c99ba5c60a44913bfa08
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.