8 static int c_pc
= '%'; /* page number character */
13 /* skip everything until the end of line */
14 static void jmp_eol(void)
19 } while (c
>= 0 && c
!= '\n');
22 static void tr_vs(char **args
)
24 int vs
= args
[1] ? eval_re(args
[1], n_v
, 'p') : n_v0
;
29 static void tr_ls(char **args
)
31 int ls
= args
[1] ? eval_re(args
[1], n_L
, 0) : n_L0
;
36 static void tr_pl(char **args
)
38 int n
= eval_re(args
[1] ? args
[1] : "11i", n_p
, 'v');
42 static void tr_nr(char **args
)
48 num_set(id
, eval_re(args
[2], num_get(id
, 0), 'u'));
49 num_inc(id
, args
[3] ? eval(args
[3], 'u') : 0);
52 static void tr_rr(char **args
)
55 for (i
= 1; i
<= NARGS
; i
++)
57 num_del(map(args
[i
]));
60 static void tr_af(char **args
)
63 num_setfmt(map(args
[1]), args
[2]);
66 static void tr_ds(char **args
)
69 str_set(map(args
[1]), args
[2]);
72 static void tr_as(char **args
)
79 s1
= str_get(reg
) ? str_get(reg
) : "";
81 s
= malloc(strlen(s1
) + strlen(s2
) + 1);
88 static void tr_rm(char **args
)
91 for (i
= 1; i
<= NARGS
; i
++)
96 static void tr_rn(char **args
)
100 str_rn(map(args
[1]), map(args
[2]));
103 static void tr_po(char **args
)
105 int po
= args
[1] ? eval_re(args
[1], n_o
, 'm') : n_o0
;
110 static char *arg_regname(char *s
, int len
);
112 static void macrobody(struct sbuf
*sbuf
, char *end
)
118 cp_wid(0); /* copy-mode; disable \w handling */
119 while ((c
= cp_next()) >= 0) {
126 arg_regname(buf
, sizeof(buf
));
127 if ((n_cp
&& end
[0] == buf
[0] && end
[1] == buf
[1]) ||
135 for (i
= 0; buf
[i
]; i
++)
136 sbuf_add(sbuf
, (unsigned char) buf
[i
]);
146 static void tr_de(char **args
)
154 if (args
[0][1] == 'a' && args
[0][2] == 'm' && str_get(id
))
155 sbuf_append(&sbuf
, str_get(id
));
156 macrobody(&sbuf
, args
[2] ? args
[2] : ".");
157 str_set(id
, sbuf_buf(&sbuf
));
161 static void tr_ig(char **args
)
163 macrobody(NULL
, args
[1] ? args
[1] : ".");
166 void schar_read(char *d
, int (*next
)(void))
185 int schar_jump(char *d
, int (*next
)(void), void (*back
)(int))
188 for (i
= 0; d
[i
]; i
++)
189 if ((c
= next()) != d
[i
])
200 /* read into sbuf until stop; if stop is NULL, stop at whitespace */
201 static int read_until(struct sbuf
*sbuf
, char *stop
)
204 while ((c
= cp_next()) >= 0) {
208 if (!stop
&& (c
== ' ' || c
== '\t'))
210 if (stop
&& !schar_jump(stop
, cp_next
, cp_back
))
212 sbuf_add(sbuf
, cp_next());
217 /* evaluate .if strcmp (i.e. 'str'str') */
218 static int if_strcmp(void)
223 schar_read(delim
, cp_next
);
226 read_until(&s1
, delim
);
227 read_until(&s2
, delim
);
228 ret
= !strcmp(sbuf_buf(&s1
), sbuf_buf(&s2
));
234 /* evaluate .if condition letters */
235 static int if_cond(void)
250 /* evaluate .if condition */
251 static int if_eval(void)
256 if (!read_until(&sbuf
, NULL
))
258 ret
= eval(sbuf_buf(&sbuf
), '\0') > 0;
263 static int ie_cond
[NIES
]; /* .ie condition stack */
266 static void tr_if(char **args
)
273 } while (c
== ' ' || c
== '\t');
279 if (strchr("oetn", c
)) {
281 } else if (!isdigit(c
) && !strchr("-+*/%<=>&:.|()", c
)) {
286 if (args
[0][1] == 'i' && args
[0][2] == 'e') /* .ie command */
288 ie_cond
[ie_depth
++] = ret
!= neg
;
292 static void tr_el(char **args
)
294 cp_blk(ie_depth
> 0 ? ie_cond
[--ie_depth
] : 1);
297 static void tr_na(char **args
)
302 static void tr_ad(char **args
)
307 switch (args
[1][0]) {
328 static void tr_tm(char **args
)
330 fprintf(stderr
, "%s\n", args
[1]);
333 static void tr_so(char **args
)
339 static void tr_nx(char **args
)
345 static void tr_ex(char **args
)
350 static void tr_lt(char **args
)
352 int lt
= args
[1] ? eval_re(args
[1], n_lt
, 'm') : n_t0
;
357 static void tr_pc(char **args
)
359 c_pc
= args
[1] ? args
[1][0] : -1;
362 static int tl_next(void)
365 if (c
>= 0 && c
== c_pc
) {
366 in_push(num_str(REG('%', '\0')), NULL
);
372 static void tr_tl(char **args
)
377 } while (c
>= 0 && (c
== ' ' || c
== '\t'));
379 ren_tl(tl_next
, cp_back
);
382 } while (c
>= 0 && c
!= '\n');
385 static void tr_ec(char **args
)
387 c_ec
= args
[1] ? args
[1][0] : '\\';
390 static void tr_cc(char **args
)
392 c_ec
= args
[1] ? args
[1][0] : '.';
395 static void tr_c2(char **args
)
397 c_ec
= args
[1] ? args
[1][0] : '\'';
400 static void tr_eo(char **args
)
405 static void tr_hc(char **args
)
407 strcpy(c_hc
, args
[1] ? args
[1] : "\\%");
410 static void tr_nh(char **args
)
415 static void tr_hy(char **args
)
417 n_hy
= args
[1] ? atoi(args
[1]) : 1;
420 static void tr_lg(char **args
)
423 n_lg
= atoi(args
[1]);
426 static void tr_kn(char **args
)
429 n_kn
= atoi(args
[1]);
432 static void tr_cp(char **args
)
435 n_cp
= atoi(args
[1]);
438 static char *arg_regname(char *s
, int len
)
440 char *e
= n_cp
? s
+ 2 : s
+ len
;
442 while (c
== ' ' || c
== '\t')
444 while (s
< e
&& c
>= 0 && c
!= ' ' && c
!= '\t' && c
!= '\n') {
454 static char *arg_normal(char *s
, int len
)
456 char *e
= s
+ len
- 1;
466 while (s
< e
&& c
> 0 && c
!= '\n') {
467 if (!quoted
&& c
== ' ')
469 if (quoted
&& c
== '"') {
483 static char *arg_string(char *s
, int len
)
485 char *e
= s
+ len
- 1;
487 while ((c
= cp_next()) == ' ')
491 while (s
< e
&& c
> 0 && c
!= '\n') {
501 /* read macro arguments; trims tabs if rmtabs is nonzero */
502 static int mkargs(char **args
, char *buf
, int len
)
505 char *e
= buf
+ len
- 1;
511 if (c
< 0 || c
== '\n')
514 s
= arg_normal(s
, e
- s
);
522 /* read request arguments; trims tabs too */
523 static int mkargs_req(char **args
, char *buf
, int len
)
526 char *e
= buf
+ len
- 1;
530 while (n
< NARGS
&& s
< e
) {
532 while (c
== ' ' || c
== '\t')
534 while (c
>= 0 && c
!= '\n' && c
!= ' ' && c
!= '\t' && s
< e
) {
541 if (c
< 0 || c
== '\n')
548 /* read arguments for .ds */
549 static int mkargs_ds(char **args
, char *buf
, int len
)
552 char *e
= buf
+ len
- 1;
555 s
= arg_regname(s
, e
- s
);
558 s
= arg_string(s
, e
- s
);
561 if (c
>= 0 && c
!= '\n')
566 /* read arguments for commands .nr that expect a register name */
567 static int mkargs_reg1(char **args
, char *buf
, int len
)
570 char *e
= buf
+ len
- 1;
572 s
= arg_regname(s
, e
- s
);
573 return mkargs_req(args
+ 1, s
, e
- s
) + 1;
576 /* do not read arguments; for .if, .ie and .el */
577 static int mkargs_null(char **args
, char *buf
, int len
)
582 /* read the whole line for .tm */
583 static int mkargs_eol(char **args
, char *buf
, int len
)
586 char *e
= buf
+ len
- 1;
592 while (s
< e
&& c
>= 0 && c
!= '\n') {
602 void (*f
)(char **args
);
603 int (*args
)(char **args
, char *buf
, int len
);
605 {TR_DIVBEG
, tr_divbeg
},
606 {TR_DIVEND
, tr_divend
},
607 {TR_EJECT
, tr_eject
},
610 {"am", tr_de
, mkargs_reg1
},
611 {"as", tr_as
, mkargs_ds
},
620 {"de", tr_de
, mkargs_reg1
},
622 {"ds", tr_ds
, mkargs_ds
},
625 {"el", tr_el
, mkargs_null
},
637 {"ie", tr_if
, mkargs_null
},
638 {"if", tr_if
, mkargs_null
},
651 {"nr", tr_nr
, mkargs_reg1
},
670 {"tl", tr_tl
, mkargs_null
},
671 {"tm", tr_tm
, mkargs_eol
},
680 char *args
[NARGS
+ 3] = {NULL
};
684 while (tr_nl
&& c
>= 0 && (c
== c_cc
|| c
== c_c2
)) {
686 memset(args
, 0, sizeof(args
));
690 arg_regname(cmd
+ 1, sizeof(cmd
) - 1);
691 req
= str_dget(map(cmd
+ 1));
694 req
->args(args
+ 1, buf
, sizeof(buf
));
696 mkargs_req(args
+ 1, buf
, sizeof(buf
));
700 mkargs(args
+ 1, buf
, sizeof(buf
));
702 if (str_get(map(cmd
+ 1)))
703 in_push(str_get(map(cmd
+ 1)), args
+ 1);
715 for (i
= 0; i
< LEN(cmds
); i
++)
716 str_dset(map(cmds
[i
].id
), &cmds
[i
]);