Home | History | Annotate | Download | only in src

Lines Matching refs:pstr

4357 // If *pstr starts with the given prefix, modifies *pstr to be right
4358 // past the prefix and returns true; otherwise leaves *pstr unchanged
4359 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4360 bool SkipPrefix(const char* prefix, const char** pstr) {
4362 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4363 *pstr += prefix_len;