1 /* reading characters and escapes */
7 /* return the length of a utf-8 character based on its first byte */
10 if (c
> 0 && c
<= 0x7f)
25 /* return nonzero if s is a single utf-8 character */
28 return !s
[utf8len((unsigned char) *s
)];
31 /* read a utf-8 character from s and copy it to d */
32 int utf8read(char **s
, char *d
)
34 int l
= utf8len((unsigned char) **s
);
36 for (i
= 0; i
< l
; i
++)
43 /* read a utf-8 character with next() and copy it to s */
44 int utf8next(char *s
, int (*next
)(void))
52 for (i
= 1; i
< l
; i
++)
58 /* read quoted arguments of escape sequences (ESC_Q) */
59 void quotednext(char *d
, int (*next
)(void), void (*back
)(int))
61 char delim
[GNLEN
], cs
[GNLEN
];
62 charnext(delim
, next
, back
);
63 while (charnext_delim(cs
, next
, back
, delim
) >= 0) {
69 /* read unquoted arguments of escape sequences (ESC_P) */
70 void unquotednext(char *d
, int cmd
, int (*next
)(void), void (*back
)(int))
73 if (cmd
== 's' && (c
== '-' || c
== '+')) {
80 } else if (!n_cp
&& c
== '[') {
82 while (c
> 0 && c
!= '\n' && c
!= ']') {
88 if (cmd
== 's' && c
>= '1' && c
<= '3') {
100 * read the next character or escape sequence (x, \x, \(xy, \[xyz], \C'xyz')
102 * character returned contents of c
110 int charnext(char *c
, int (*next
)(void), void (*back
)(int))
113 if (!utf8next(c
, next
))
116 utf8next(c
+ 1, next
);
120 utf8next(c
+ 1, next
);
122 l
= utf8next(c
, next
);
123 l
+= utf8next(c
+ l
, next
);
125 } else if (!n_cp
&& c
[1] == '[') {
128 while (n
>= 0 && n
!= '\n' && n
!= ']' && l
< GNLEN
- 1) {
134 } else if (c
[1] == 'C') {
135 quotednext(c
, next
, back
);
143 /* like nextchar(), but return -1 if delim was read */
144 int charnext_delim(char *c
, int (*next
)(void), void (*back
)(int), char *delim
)
146 int t
= charnext(c
, next
, back
);
147 return strcmp(c
, delim
) ? t
: -1;
150 /* convert back the character read from nextchar() (e.g. xy -> \\(xy) */
151 void charnext_str(char *d
, char *c
)
153 int c0
= (unsigned char) c
[0];
154 if (c0
== c_ec
|| c0
== c_ni
|| !c
[1] || utf8one(c
)) {
158 if (!c
[2] && utf8len(c0
) == 1)
159 sprintf(d
, "%c(%s", c_ec
, c
);
161 sprintf(d
, "%cC'%s'", c_ec
, c
);
164 /* like charnext() for string buffers */
165 int charread(char **s
, char *c
)
169 ret
= charnext(c
, sstr_next
, sstr_back
);
174 /* like charnext_delim() for string buffers */
175 int charread_delim(char **s
, char *c
, char *delim
)
179 ret
= charnext_delim(c
, sstr_next
, sstr_back
, delim
);
184 /* read quoted arguments; this is called only for internal neatroff strings */
185 static void quotedread(char **sp
, char *d
)
189 while (*s
&& *s
!= q
)
197 /* read unquoted arguments; this is called only for internal neatroff strings */
198 static void unquotedread(char **sp
, char *d
)
205 } else if (!n_cp
&& *s
== '[') {
207 while (*s
&& *s
!= ']')
219 * read a glyph or an escape sequence
221 * This function reads from s either an output troff request
222 * (only the ones emitted by wb.c) or a glyph name and updates
223 * s. The return value is the name of the troff request (the
224 * argument is copied into d) or zero for glyph names (it is
225 * copied into d). Returns -1 when the end of s is reached.
227 int escread(char **s
, char *d
)
237 utf8read(s
, d
+ strlen(d
));
238 } else if (!n_cp
&& d
[1] == '[') {
239 while (**s
&& **s
!= ']')
243 } else if (strchr("CDfhmsvXx", d
[1])) {
246 if (strchr(ESC_P
, c
))
248 if (strchr(ESC_Q
, c
))
250 return c
== 'C' ? 0 : c
;
259 * string streams: provide next()/back() interface for string buffers
261 * Functions like charnext() require a next()/back() interface
262 * for reading input streams. In order to provide this interface
263 * for string buffers, the following functions can be used:
266 * charnext(c, sstr_next, sstr_back);
269 * The calls to sstr_push()/sstr_pop() may be nested.
271 static char *sstr_bufs
[NSSTR
]; /* buffer stack */
272 static int sstr_n
; /* numbers of items in sstr_bufs[] */
273 static char *sstr_s
; /* current buffer */
275 void sstr_push(char *s
)
277 sstr_bufs
[sstr_n
++] = sstr_s
;
284 sstr_s
= sstr_bufs
[--sstr_n
];
290 return *sstr_s
? (unsigned char) *sstr_s
++ : -1;
293 void sstr_back(int c
)