Buckets:
arudradey/fullhtml-storage / emsdk /upstream /emscripten /system /lib /llvm-libc /src /wchar /wcpncpy.cpp
| //===-- Implementation of wcpncpy -----------------------------------------===// | |
| // | |
| // 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(wchar_t *, wcpncpy, | |
| (wchar_t *__restrict s1, const wchar_t *__restrict s2, | |
| size_t n)) { | |
| if (n) { | |
| LIBC_CRASH_ON_NULLPTR(s1); | |
| LIBC_CRASH_ON_NULLPTR(s2); | |
| } | |
| size_t i; | |
| // Copy up until \0 is found. | |
| for (i = 0; i < n && s2[i] != '\0'; ++i) | |
| s1[i] = s2[i]; | |
| // When n>strlen(src), n-strlen(src) \0 are appended. | |
| for (size_t j = i; j < n; ++j) | |
| s1[j] = L'\0'; | |
| // ...but our result points to the first \0 (if any). | |
| return s1 + i; | |
| } | |
| } // namespace LIBC_NAMESPACE_DECL | |
Xet Storage Details
- Size:
- 1.17 kB
- Xet hash:
- f0e1a5b12cbfe266b0557b1fe4dc94f0c304a8aa6939a1100470c160066c6cc7
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.