arudradey's picture
download
raw
1.17 kB
//===-- 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
//
//===----------------------------------------------------------------------===//
#include "src/wchar/wcpncpy.h"
#include "hdr/types/size_t.h"
#include "hdr/types/wchar_t.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
#include "src/__support/macros/null_check.h"
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.