Searched defs:nextchr (Results 1 - 4 of 4) sorted by relevance

/ast/src/lib/libast/string/
H A Dstrexpr.c43 #define getchr(ex) (*(ex)->nextchr++)
44 #define peekchr(ex) (*(ex)->nextchr)
45 #define ungetchr(ex) ((ex)->nextchr--)
51 char* nextchr; /* next expression char */ member in struct:__anon310
66 ex->errchr = ex->nextchr;
67 ex->nextchr = "";
246 pos = --ex->nextchr;
247 if (isdigit(c)) n = strton(ex->nextchr, &ex->nextchr, NiL, 0);
248 else if (ex->convert) n = (*ex->convert)(ex->nextchr,
[all...]
/ast/src/cmd/ksh93/sh/
H A Dstreval.c70 const char *nextchr; /* next char in current expression */ member in struct:vars
92 #define getchr(vp) (*(vp)->nextchr++)
93 #define peekchr(vp) (*(vp)->nextchr)
94 #define ungetchr(vp) ((vp)->nextchr--)
122 vp->errchr = vp->nextchr;
123 vp->nextchr = "";
507 vp->errchr = vp->nextchr;
514 vp->errchr = vp->nextchr;
517 vp->nextchr--;
616 vp->nextchr
[all...]
/ast/src/lib/libpp/
H A Dpplib.h140 char* nextchr; /* next input char (first elt) */ member in struct:ppinstk
476 #define peekchr() (*pp.in->nextchr)
477 #define ungetchr(c) (*--pp.in->nextchr=(c))
574 cur->nextchr = p; \
576 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \
587 cur->buffer = cur->nextchr = ppexpand(p); \
590 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \
605 cur->nextchr = p->macro->value; \
609 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \
618 cur->nextchr
[all...]
/ast/src/cmd/INIT/
H A Dproto.c221 char* nextchr; member in struct:ppinstk

Completed in 30 milliseconds