Skip to content
StrIterMustMove

StrIterMustMove

Description

Aborting variant of StrIterMove.

Usage example (Cross-references)

Usage examples (Cross-references)
                                    LVAL(si.data + si.pos - 1)
                                );
                                StrIterMustMove(&si, 5);
                                break;
                const char *pos = StrIterPos(&si);
                if (pos && ZstrCompareN(pos, "true", 4) == 0) {
                    StrIterMustMove(&si, 4);
                    *b = true;
                    return si;
                    const char *pos = StrIterPos(&si);
                    if (pos && ZstrCompareN(pos, "false", 5) == 0) {
                        StrIterMustMove(&si, 5);
                        *b = false;
                        return si;
                const char *pos = StrIterPos(&si);
                if (pos && ZstrCompareN(pos, "null", 4) == 0) {
                    StrIterMustMove(&si, 4);
                    *is_null = true;
                    return si;
Last updated on