MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / IsSubstringPred

Function IsSubstringPred

rtpose_wrapper/src/gtest/gtest-all.cpp:2534–2539  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2532// only.
2533
2534bool IsSubstringPred(const char* needle, const char* haystack) {
2535 if (needle == NULL || haystack == NULL)
2536 return needle == haystack;
2537
2538 return strstr(haystack, needle) != NULL;
2539}
2540
2541bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
2542 if (needle == NULL || haystack == NULL)

Callers 1

IsSubstringImplFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected