Buckets:
arudradey/fullhtml-storage / emsdk /upstream /emscripten /system /lib /llvm-libc /src /string /strstr.cpp
| //===-- Implementation of strstr ------------------------------------------===// | |
| // | |
| // 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 { | |
| // TODO: This is a simple brute force implementation. This can be | |
| // improved upon using well known string matching algorithms. | |
| LLVM_LIBC_FUNCTION(char *, strstr, (const char *haystack, const char *needle)) { | |
| auto comp = [](char l, char r) -> int { return l - r; }; | |
| LIBC_CRASH_ON_NULLPTR(haystack); | |
| LIBC_CRASH_ON_NULLPTR(needle); | |
| return inline_strstr(haystack, needle, comp); | |
| } | |
| } // namespace LIBC_NAMESPACE_DECL | |
Xet Storage Details
- Size:
- 1.03 kB
- Xet hash:
- dfd272d6890f2553a5b66e9147fe82d678bb490e4ce13f4afb5f008725147482
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.