Lines Matching full:pstr
4660 // If *pstr starts with the given prefix, modifies *pstr to be right
4661 // past the prefix and returns true; otherwise leaves *pstr unchanged
4662 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4663 bool SkipPrefix(const char* prefix, const char** pstr) {
4665 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4666 *pstr += prefix_len;