MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / LLVM_LIBC_FUNCTION

Function LLVM_LIBC_FUNCTION

system/lib/llvm-libc/src/string/strcmp.cpp:17–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15namespace LIBC_NAMESPACE_DECL {
16
17LLVM_LIBC_FUNCTION(int, strcmp, (const char *left, const char *right)) {
18 auto comp = [](char l, char r) -> int { return l - r; };
19 return inline_strcmp(left, right, comp);
20}
21
22} // namespace LIBC_NAMESPACE_DECL

Callers

nothing calls this directly

Calls 1

inline_strcmpFunction · 0.85

Tested by

no test coverage detected