Buckets:
arudradey/fullhtml-storage / emsdk /upstream /emscripten /system /lib /llvm-libc /src /wchar /mbrtowc.cpp
| //===-- Implementation of mbrtowc -----------------------------------------===// | |
| // | |
| // 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(size_t, mbrtowc, | |
| (wchar_t *__restrict pwc, const char *__restrict s, size_t n, | |
| mbstate_t *__restrict ps)) { | |
| static internal::mbstate internal_mbstate; | |
| auto ret = internal::mbrtowc(pwc, s, n, | |
| ps == nullptr | |
| ? &internal_mbstate | |
| : reinterpret_cast<internal::mbstate *>(ps)); | |
| if (!ret.has_value()) { | |
| // Encoding failure | |
| libc_errno = ret.error(); | |
| return -1; | |
| } | |
| return ret.value(); | |
| } | |
| } // namespace LIBC_NAMESPACE_DECL | |
Xet Storage Details
- Size:
- 1.32 kB
- Xet hash:
- 89eba589ecc89988ef83d1d6e26f17517163d8419015a8cae3e91db3c65801dc
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.