| 6667 | return xpath_string(str, false); |
| 6668 | } |
| 6669 | PUGI__NS_END |
| 6670 | |
| 6671 | PUGI__NS_BEGIN |
| 6672 | PUGI__FN bool starts_with(const char_t* string, const char_t* pattern) |
| 6673 | { |
| 6674 | while (*pattern && *string == *pattern) |
| 6675 | { |
| 6676 | string++; |
| 6677 | pattern++; |
| 6678 | } |
| 6679 | |
| 6680 | return *pattern == 0; |
| 6681 | } |
| 6682 | |
| 6683 | PUGI__FN const char_t* find_char(const char_t* s, char_t c) |
| 6684 | { |
no outgoing calls
no test coverage detected