| 6690 | } |
| 6691 | |
| 6692 | PUGI__FN const char_t* find_substring(const char_t* s, const char_t* p) |
| 6693 | { |
| 6694 | #ifdef PUGIXML_WCHAR_MODE |
| 6695 | // MSVC6 wcsstr bug workaround (if s is empty it always returns 0) |
| 6696 | return (*p == 0) ? s : wcsstr(s, p); |
| 6697 | #else |
| 6698 | return strstr(s, p); |
| 6699 | #endif |
| 6700 | } |
| 6701 | |
| 6702 | // Converts symbol to lower case, if it is an ASCII one |
| 6703 | PUGI__FN char_t tolower_ascii(char_t ch) |
no outgoing calls
no test coverage detected