StrIterMustMove
Description
Aborting variant of StrIterMove.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
JSON.c:260:
LVAL(si.data + si.pos - 1)
);
StrIterMustMove(&si, 5);
break;- In
JSON.c:495:
const char *pos = StrIterPos(&si);
if (pos && ZstrCompareN(pos, "true", 4) == 0) {
StrIterMustMove(&si, 4);
*b = true;
return si;- In
JSON.c:507:
const char *pos = StrIterPos(&si);
if (pos && ZstrCompareN(pos, "false", 5) == 0) {
StrIterMustMove(&si, 5);
*b = false;
return si;- In
JSON.c:546:
const char *pos = StrIterPos(&si);
if (pos && ZstrCompareN(pos, "null", 4) == 0) {
StrIterMustMove(&si, 4);
*is_null = true;
return si;
Last updated on