MCPcopy Create free account
hub / github.com/EmbeddedRPC/erpc / IsSubstringPred

Function IsSubstringPred

test/common/gtest/gtest.cpp:3029–3034  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3027// only.
3028
3029bool IsSubstringPred(const char* needle, const char* haystack) {
3030 if (needle == NULL || haystack == NULL)
3031 return needle == haystack;
3032
3033 return strstr(haystack, needle) != NULL;
3034}
3035
3036bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
3037 if (needle == NULL || haystack == NULL)

Callers 1

IsSubstringImplFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected