MCPcopy Create free account
hub / github.com/MyGUI/mygui / find_char

Function find_char

Tools/EditorFramework/pugixml.cpp:6683–6690  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6681}
6682
6683PUGI__FN const char_t* find_char(const char_t* s, char_t c)
6684{
6685 #ifdef PUGIXML_WCHAR_MODE
6686 return wcschr(s, c);
6687 #else
6688 return strchr(s, c);
6689 #endif
6690}
6691
6692PUGI__FN const char_t* find_substring(const char_t* s, const char_t* p)
6693{

Callers 3

local_nameFunction · 0.70
translateFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected