MCPcopy Create free account
hub / github.com/apache/singa / IsSubstringPred

Function IsSubstringPred

test/gtest/gtest-all.cc:2718–2723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2716// only.
2717
2718bool IsSubstringPred(const char* needle, const char* haystack) {
2719 if (needle == NULL || haystack == NULL)
2720 return needle == haystack;
2721
2722 return strstr(haystack, needle) != NULL;
2723}
2724
2725bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
2726 if (needle == NULL || haystack == NULL)

Callers 1

IsSubstringImplFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected