Skip to content

StrIterRead

Description

Read the current character into *out and advance the cursor. Propagating alias for IterRead; see IterRead for the full contract.

Usage example (Cross-references)

Usage examples (Cross-references)
            StrIter aug_it = StrIterFromZstr(augmentation + 1);
            char    a;
            while (StrIterRead(&aug_it, &a)) {
                switch (a) {
                    case 'L' : {
Last updated on