Buckets:
arudradey/fullhtml-storage / emsdk /upstream /emscripten /system /lib /llvm-libc /src /string /memcmp.cpp
| //===-- Implementation of memcmp ------------------------------------------===// | |
| // | |
| // 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(int, memcmp, | |
| (const void *lhs, const void *rhs, size_t count)) { | |
| if (count) { | |
| LIBC_CRASH_ON_NULLPTR(lhs); | |
| LIBC_CRASH_ON_NULLPTR(rhs); | |
| } | |
| return inline_memcmp(lhs, rhs, count); | |
| } | |
| } // namespace LIBC_NAMESPACE_DECL | |
Xet Storage Details
- Size:
- 868 Bytes
- Xet hash:
- dfd707337cc51629194666c97012a28295a9c419ae7bea97edc8fb18b7bb92e8
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.