Lines Matching defs:dw
13 DviGetAndPut(DviWidget dw, int *cp)
15 if (dw->dvi.ungot) {
16 dw->dvi.ungot = 0;
17 *cp = getc(dw->dvi.file);
20 *cp = getc(dw->dvi.file);
21 putc(*cp, dw->dvi.tmpFile);
27 GetLine(DviWidget dw, char *Buffer, int Length)
34 while ((!p || i++ < Length) && DviGetC(dw, &c) != EOF && c != '\n') {
39 DviUngetC(dw, c);
46 GetWord(DviWidget dw, char *Buffer, int Length)
52 while (DviGetC(dw, &c) != EOF && isspace(c))
55 DviUngetC(dw, c);
56 while (i++ < Length && DviGetC(dw, &c) != EOF && !isspace(c)) {
61 DviUngetC(dw, c);
68 GetNumber(DviWidget dw)
72 while (DviGetC(dw, &c) != EOF && isspace(c))
75 DviUngetC(dw, c);
76 while (DviGetC(dw, &c) != EOF && isdigit(c))
79 DviUngetC(dw, c);