2 #include <X11/IntrinsicP.h>
3 #include <X11/StringDefs.h>
13 *cp = getc (dw->dvi.file);
16 *cp = getc (dw->dvi.file);
18 putc (*cp, dw->dvi.tmpFile);
24 GetLine(dw, Buffer, Length)
31 Length--; /* Save room for final '\0' */
33 while (DviGetC (dw, &c) != EOF) {
34 if (Buffer && i < Length)
47 GetWord(dw, Buffer, Length)
54 Length--; /* Save room for final '\0' */
55 while (DviGetC(dw, &c) == ' ' || c == '\n')
58 if (Buffer && i < Length)
60 if (DviGetC(dw, &c) == ' ' || c == '\n') {
76 while (DviGetC(dw, &c) == ' ' || c == '\n')
83 for (; c >= '0' && c <= '9'; DviGetC(dw, &c)) {
97 c-continued-statement-offset: 8
101 c-tab-always-indent: nil