]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc.c
1 /* $Id: mdoc.c,v 1.39 2009/01/20 12:51:28 kristaps Exp $ */
3 * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the
7 * above copyright notice and this permission notice appear in all
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
29 const char *const __mdoc_macronames
[MDOC_MAX
] = {
30 "\\\"", "Dd", "Dt", "Os",
31 "Sh", "Ss", "Pp", "D1",
32 "Dl", "Bd", "Ed", "Bl",
33 "El", "It", "Ad", "An",
34 "Ar", "Cd", "Cm", "Dv",
35 "Er", "Ev", "Ex", "Fa",
36 "Fd", "Fl", "Fn", "Ft",
37 "Ic", "In", "Li", "Nd",
38 "Nm", "Op", "Ot", "Pa",
39 "Rv", "St", "Va", "Vt",
41 "Xr", "\%A", "\%B", "\%D",
43 "\%I", "\%J", "\%N", "\%O",
45 "\%P", "\%R", "\%T", "\%V",
46 "Ac", "Ao", "Aq", "At",
47 "Bc", "Bf", "Bo", "Bq",
48 "Bsx", "Bx", "Db", "Dc",
49 "Do", "Dq", "Ec", "Ef",
50 "Em", "Eo", "Fx", "Ms",
51 "No", "Ns", "Nx", "Ox",
52 "Pc", "Pf", "Po", "Pq",
53 "Qc", "Ql", "Qo", "Qq",
54 "Re", "Rs", "Sc", "So",
55 "Sq", "Sm", "Sx", "Sy",
56 "Tn", "Ux", "Xc", "Xo",
57 "Fo", "Fc", "Oo", "Oc",
58 "Bk", "Ek", "Bt", "Hf",
62 const char *const __mdoc_argnames
[MDOC_ARG_MAX
] = {
63 "split", "nosplit", "ragged",
64 "unfilled", "literal", "file",
65 "offset", "bullet", "dash",
66 "hyphen", "item", "enum",
67 "tag", "diag", "hang",
68 "ohang", "inset", "column",
69 "width", "compact", "std",
70 "p1003.1-88", "p1003.1-90", "p1003.1-96",
71 "p1003.1-2001", "p1003.1-2004", "p1003.1",
72 "p1003.1b", "p1003.1b-93", "p1003.1c-95",
73 "p1003.1g-2000", "p1003.2-92", "p1387.2-95",
74 "p1003.2", "p1387.2", "isoC-90",
75 "isoC-amd1", "isoC-tcor1", "isoC-tcor2",
76 "isoC-99", "ansiC", "ansiC-89",
77 "ansiC-99", "ieee754", "iso8802-3",
78 "xpg3", "xpg4", "xpg4.2",
79 "xpg4.3", "xbd5", "xcu5",
80 "xsh5", "xns5", "xns5.2d2.0",
81 "xcurses4.2", "susv2", "susv3",
82 "svid4", "filled", "words",
83 "emphasis", "symbolic",
86 const struct mdoc_macro __mdoc_macros
[MDOC_MAX
] = {
88 { macro_constant
, MDOC_PROLOGUE
}, /* Dd */
89 { macro_constant
, MDOC_PROLOGUE
}, /* Dt */
90 { macro_constant
, MDOC_PROLOGUE
}, /* Os */
91 { macro_scoped
, 0 }, /* Sh */
92 { macro_scoped
, 0 }, /* Ss */
93 { macro_text
, 0 }, /* Pp */
94 { macro_scoped_line
, MDOC_PARSED
}, /* D1 */
95 { macro_scoped_line
, MDOC_PARSED
}, /* Dl */
96 { macro_scoped
, MDOC_EXPLICIT
}, /* Bd */
97 { macro_scoped_close
, MDOC_EXPLICIT
}, /* Ed */
98 { macro_scoped
, MDOC_EXPLICIT
}, /* Bl */
99 { macro_scoped_close
, MDOC_EXPLICIT
}, /* El */
100 { macro_scoped
, MDOC_PARSED
| MDOC_TABSEP
}, /* It */
101 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ad */
102 { macro_text
, MDOC_PARSED
}, /* An */
103 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ar */
104 { macro_constant
, MDOC_QUOTABLE
}, /* Cd */
105 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Cm */
106 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dv */
107 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Er */
108 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ev */
109 { macro_constant
, 0 }, /* Ex */
110 { macro_text
, MDOC_CALLABLE
| MDOC_QUOTABLE
| MDOC_PARSED
}, /* Fa */
111 { macro_constant
, 0 }, /* Fd */
112 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fl */
113 { macro_text
, MDOC_CALLABLE
| MDOC_QUOTABLE
| MDOC_PARSED
}, /* Fn */
114 { macro_text
, MDOC_PARSED
| MDOC_QUOTABLE
}, /* Ft */
115 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ic */
116 { macro_constant
, 0 }, /* In */
117 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Li */
118 { macro_constant
, 0 }, /* Nd */
119 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nm */
120 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Op */
121 { macro_obsolete
, 0 }, /* Ot */
122 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Pa */
123 { macro_constant
, 0 }, /* Rv */
124 /* XXX - .St supposed to be (but isn't) callable. */
125 { macro_constant_delimited
, MDOC_PARSED
}, /* St */
126 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Va */
127 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Vt */
128 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Xr */
129 { macro_constant
, MDOC_QUOTABLE
}, /* %A */
130 { macro_constant
, MDOC_QUOTABLE
}, /* %B */
131 { macro_constant
, MDOC_QUOTABLE
}, /* %D */
132 { macro_constant
, MDOC_QUOTABLE
}, /* %I */
133 { macro_constant
, MDOC_QUOTABLE
}, /* %J */
134 { macro_constant
, MDOC_QUOTABLE
}, /* %N */
135 { macro_constant
, MDOC_QUOTABLE
}, /* %O */
136 { macro_constant
, MDOC_QUOTABLE
}, /* %P */
137 { macro_constant
, MDOC_QUOTABLE
}, /* %R */
138 { macro_constant
, MDOC_QUOTABLE
}, /* %T */
139 { macro_constant
, MDOC_QUOTABLE
}, /* %V */
140 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Ac */
141 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Ao */
142 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Aq */
143 { macro_constant_delimited
, 0 }, /* At */
144 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Bc */
145 { macro_scoped
, MDOC_EXPLICIT
}, /* Bf */
146 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Bo */
147 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bq */
148 { macro_constant_delimited
, MDOC_PARSED
}, /* Bsx */
149 { macro_constant_delimited
, MDOC_PARSED
}, /* Bx */
150 { macro_constant
, 0 }, /* Db */
151 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Dc */
152 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Do */
153 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dq */
154 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Ec */
155 { macro_scoped_close
, MDOC_EXPLICIT
}, /* Ef */
156 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Em */
157 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Eo */
158 { macro_constant_delimited
, MDOC_PARSED
}, /* Fx */
159 { macro_text
, MDOC_PARSED
}, /* Ms */
160 { macro_constant_delimited
, MDOC_CALLABLE
| MDOC_PARSED
}, /* No */
161 { macro_constant_delimited
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ns */
162 { macro_constant_delimited
, MDOC_PARSED
}, /* Nx */
163 { macro_constant_delimited
, MDOC_PARSED
}, /* Ox */
164 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Pc */
165 { macro_constant_delimited
, MDOC_PARSED
}, /* Pf */
166 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Po */
167 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Pq */
168 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Qc */
169 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ql */
170 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Qo */
171 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Qq */
172 { macro_scoped_close
, MDOC_EXPLICIT
}, /* Re */
173 { macro_scoped
, MDOC_EXPLICIT
}, /* Rs */
174 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Sc */
175 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* So */
176 { macro_scoped_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Sq */
177 { macro_constant
, 0 }, /* Sm */
178 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Sx */
179 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Sy */
180 { macro_text
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Tn */
181 { macro_constant_delimited
, MDOC_PARSED
}, /* Ux */
182 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Xc */
183 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Xo */
184 /* XXX - .Fo supposed to be (but isn't) callable. */
185 { macro_scoped
, MDOC_EXPLICIT
| MDOC_PARSED
}, /* Fo */
186 /* XXX - .Fc supposed to be (but isn't) callable. */
187 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_PARSED
}, /* Fc */
188 { macro_constant_scoped
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Oo */
189 { macro_scoped_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Oc */
190 { macro_scoped
, MDOC_EXPLICIT
}, /* Bk */
191 { macro_scoped_close
, MDOC_EXPLICIT
}, /* Ek */
192 { macro_constant
, 0 }, /* Bt */
193 { macro_constant
, 0 }, /* Hf */
194 { macro_obsolete
, 0 }, /* Fr */
195 { macro_constant
, 0 }, /* Ud */
198 const char * const *mdoc_macronames
= __mdoc_macronames
;
199 const char * const *mdoc_argnames
= __mdoc_argnames
;
200 const struct mdoc_macro
* const mdoc_macros
= __mdoc_macros
;
203 static struct mdoc_arg
*argdup(size_t, const struct mdoc_arg
*);
204 static void argfree(size_t, struct mdoc_arg
*);
205 static void argcpy(struct mdoc_arg
*,
206 const struct mdoc_arg
*);
208 static int mdoc_node_append(struct mdoc
*,
210 static void mdoc_elem_free(struct mdoc_elem
*);
211 static void mdoc_text_free(struct mdoc_text
*);
214 const struct mdoc_node
*
215 mdoc_node(struct mdoc
*mdoc
)
222 const struct mdoc_meta
*
223 mdoc_meta(struct mdoc
*mdoc
)
231 mdoc_free(struct mdoc
*mdoc
)
235 mdoc_node_freelist(mdoc
->first
);
237 mdoc_tokhash_free(mdoc
->htab
);
238 if (mdoc
->meta
.title
)
239 free(mdoc
->meta
.title
);
243 free(mdoc
->meta
.name
);
250 mdoc_alloc(void *data
, const struct mdoc_cb
*cb
)
254 p
= xcalloc(1, sizeof(struct mdoc
));
258 (void)memcpy(&p
->cb
, cb
, sizeof(struct mdoc_cb
));
260 p
->last
= xcalloc(1, sizeof(struct mdoc_node
));
261 p
->last
->type
= MDOC_ROOT
;
264 p
->next
= MDOC_NEXT_CHILD
;
265 p
->htab
= mdoc_tokhash_alloc();
272 mdoc_endparse(struct mdoc
*mdoc
)
275 if (MDOC_HALT
& mdoc
->flags
)
277 if (NULL
== mdoc
->first
)
281 if ( ! macro_end(mdoc
)) {
282 mdoc
->flags
|= MDOC_HALT
;
290 mdoc_parseln(struct mdoc
*mdoc
, int line
, char *buf
)
295 if (MDOC_HALT
& mdoc
->flags
)
301 if ( ! (MDOC_BODYPARSE
& mdoc
->flags
))
302 return(mdoc_perr(mdoc
, line
, 0, "text disallowed"));
303 if ( ! mdoc_word_alloc(mdoc
, line
, 0, buf
))
305 mdoc
->next
= MDOC_NEXT_SIBLING
;
309 if (buf
[1] && '\\' == buf
[1])
310 if (buf
[2] && '\"' == buf
[2])
314 while (buf
[i
] && ! isspace(buf
[i
]) && i
< (int)sizeof(tmp
))
317 if (i
== (int)sizeof(tmp
)) {
318 mdoc
->flags
|= MDOC_HALT
;
319 return(mdoc_perr(mdoc
, line
, 1, "unknown macro"));
321 mdoc
->flags
|= MDOC_HALT
;
322 return(mdoc_perr(mdoc
, line
, 1, "unknown macro"));
327 (void)memcpy(tmp
, buf
+ 1, (size_t)i
);
330 if (MDOC_MAX
== (c
= mdoc_find(mdoc
, tmp
))) {
331 mdoc
->flags
|= MDOC_HALT
;
332 return(mdoc_perr(mdoc
, line
, 1, "unknown macro"));
335 while (buf
[i
] && isspace(buf
[i
]))
338 if ( ! mdoc_macro(mdoc
, c
, line
, 1, &i
, buf
)) {
339 mdoc
->flags
|= MDOC_HALT
;
347 mdoc_vmsg(struct mdoc
*mdoc
, int ln
, int pos
, const char *fmt
, ...)
352 if (NULL
== mdoc
->cb
.mdoc_msg
)
356 (void)vsnprintf(buf
, sizeof(buf
) - 1, fmt
, ap
);
358 (*mdoc
->cb
.mdoc_msg
)(mdoc
->data
, ln
, pos
, buf
);
363 mdoc_verr(struct mdoc
*mdoc
, int ln
, int pos
,
364 const char *fmt
, ...)
369 if (NULL
== mdoc
->cb
.mdoc_err
)
373 (void)vsnprintf(buf
, sizeof(buf
) - 1, fmt
, ap
);
375 return((*mdoc
->cb
.mdoc_err
)(mdoc
->data
, ln
, pos
, buf
));
380 mdoc_vwarn(struct mdoc
*mdoc
, int ln
, int pos
,
381 enum mdoc_warn type
, const char *fmt
, ...)
386 if (NULL
== mdoc
->cb
.mdoc_warn
)
390 (void)vsnprintf(buf
, sizeof(buf
) - 1, fmt
, ap
);
392 return((*mdoc
->cb
.mdoc_warn
)(mdoc
->data
, ln
, pos
, type
, buf
));
397 mdoc_macro(struct mdoc
*mdoc
, int tok
,
398 int ln
, int ppos
, int *pos
, char *buf
)
401 assert(mdoc_macros
[tok
].fp
);
403 if ( ! (MDOC_PROLOGUE
& mdoc_macros
[tok
].flags
) &&
404 ! (MDOC_BODYPARSE
& mdoc
->flags
))
405 return(mdoc_perr(mdoc
, ln
, ppos
, "macro disallowed: not in document body"));
406 if (1 != ppos
&& ! (MDOC_CALLABLE
& mdoc_macros
[tok
].flags
))
407 return(mdoc_perr(mdoc
, ln
, ppos
, "macro not callable"));
408 return((*mdoc_macros
[tok
].fp
)(mdoc
, tok
, ln
, ppos
, pos
, buf
));
413 mdoc_node_append(struct mdoc
*mdoc
, struct mdoc_node
*p
)
415 const char *nn
, *nt
, *on
, *ot
, *act
;
419 assert(MDOC_ROOT
!= p
->type
);
421 /* See if we exceed the suggest line-max. */
435 if (mdoc
->linetok
> MDOC_LINEARG_SOFTMAX
)
436 if ( ! mdoc_nwarn(mdoc
, p
, WARN_COMPAT
,
437 "suggested %d tokens per line exceeded (has %d)",
438 MDOC_LINEARG_SOFTMAX
, mdoc
->linetok
))
441 if (MDOC_TEXT
== mdoc
->last
->type
)
443 else if (MDOC_ROOT
== mdoc
->last
->type
)
446 on
= mdoc_macronames
[mdoc
->last
->tok
];
448 if (MDOC_TEXT
== p
->type
)
450 else if (MDOC_ROOT
== p
->type
)
453 nn
= mdoc_macronames
[p
->tok
];
455 ot
= mdoc_type2a(mdoc
->last
->type
);
456 nt
= mdoc_type2a(p
->type
);
458 switch (mdoc
->next
) {
459 case (MDOC_NEXT_SIBLING
):
460 mdoc
->last
->next
= p
;
461 p
->prev
= mdoc
->last
;
462 p
->parent
= mdoc
->last
->parent
;
465 case (MDOC_NEXT_CHILD
):
466 mdoc
->last
->child
= p
;
467 p
->parent
= mdoc
->last
;
475 if ( ! mdoc_valid_pre(mdoc
, p
))
480 assert(MDOC_BLOCK
== p
->parent
->type
);
481 p
->parent
->data
.block
.head
= p
;
484 assert(MDOC_BLOCK
== p
->parent
->type
);
485 p
->parent
->data
.block
.tail
= p
;
488 assert(MDOC_BLOCK
== p
->parent
->type
);
489 p
->parent
->data
.block
.body
= p
;
496 mdoc_msg(mdoc
, "parse: %s `%s' %s of %s `%s'",
497 nt
, nn
, act
, ot
, on
);
503 mdoc_tail_alloc(struct mdoc
*mdoc
, int line
, int pos
, int tok
)
510 p
= xcalloc(1, sizeof(struct mdoc_node
));
517 return(mdoc_node_append(mdoc
, p
));
522 mdoc_head_alloc(struct mdoc
*mdoc
, int line
, int pos
, int tok
)
529 p
= xcalloc(1, sizeof(struct mdoc_node
));
536 return(mdoc_node_append(mdoc
, p
));
541 mdoc_body_alloc(struct mdoc
*mdoc
, int line
, int pos
, int tok
)
548 p
= xcalloc(1, sizeof(struct mdoc_node
));
555 return(mdoc_node_append(mdoc
, p
));
560 mdoc_root_alloc(struct mdoc
*mdoc
)
564 p
= xcalloc(1, sizeof(struct mdoc_node
));
568 return(mdoc_node_append(mdoc
, p
));
573 mdoc_block_alloc(struct mdoc
*mdoc
, int line
, int pos
,
574 int tok
, size_t argsz
, const struct mdoc_arg
*args
)
578 p
= xcalloc(1, sizeof(struct mdoc_node
));
582 p
->type
= MDOC_BLOCK
;
584 p
->data
.block
.argc
= argsz
;
585 p
->data
.block
.argv
= argdup(argsz
, args
);
587 return(mdoc_node_append(mdoc
, p
));
592 mdoc_elem_alloc(struct mdoc
*mdoc
, int line
, int pos
,
593 int tok
, size_t argsz
, const struct mdoc_arg
*args
)
597 p
= xcalloc(1, sizeof(struct mdoc_node
));
603 p
->data
.elem
.argc
= argsz
;
604 p
->data
.elem
.argv
= argdup(argsz
, args
);
606 return(mdoc_node_append(mdoc
, p
));
611 mdoc_word_alloc(struct mdoc
*mdoc
,
612 int line
, int pos
, const char *word
)
616 p
= xcalloc(1, sizeof(struct mdoc_node
));
620 p
->data
.text
.string
= xstrdup(word
);
622 return(mdoc_node_append(mdoc
, p
));
627 argfree(size_t sz
, struct mdoc_arg
*p
)
636 for (i
= 0; i
< (int)sz
; i
++)
640 for (j
= 0; j
< (int)p
[i
].sz
; j
++)
649 mdoc_elem_free(struct mdoc_elem
*p
)
652 argfree(p
->argc
, p
->argv
);
657 mdoc_block_free(struct mdoc_block
*p
)
660 argfree(p
->argc
, p
->argv
);
665 mdoc_text_free(struct mdoc_text
*p
)
674 mdoc_node_free(struct mdoc_node
*p
)
679 mdoc_text_free(&p
->data
.text
);
682 mdoc_elem_free(&p
->data
.elem
);
685 mdoc_block_free(&p
->data
.block
);
696 mdoc_node_freelist(struct mdoc_node
*p
)
700 mdoc_node_freelist(p
->child
);
702 mdoc_node_freelist(p
->next
);
709 mdoc_find(const struct mdoc
*mdoc
, const char *key
)
712 return(mdoc_tokhash_find(mdoc
->htab
, key
));
717 argcpy(struct mdoc_arg
*dst
, const struct mdoc_arg
*src
)
721 dst
->line
= src
->line
;
724 if (0 == (dst
->sz
= src
->sz
))
726 dst
->value
= xcalloc(dst
->sz
, sizeof(char *));
727 for (i
= 0; i
< (int)dst
->sz
; i
++)
728 dst
->value
[i
] = xstrdup(src
->value
[i
]);
732 static struct mdoc_arg
*
733 argdup(size_t argsz
, const struct mdoc_arg
*args
)
741 pp
= xcalloc((size_t)argsz
, sizeof(struct mdoc_arg
));
742 for (i
= 0; i
< (int)argsz
; i
++)
743 argcpy(&pp
[i
], &args
[i
]);
749 /* FIXME: deprecate. */
751 mdoc_node2a(struct mdoc_node
*node
)
758 (void)xstrlcat(buf
, mdoc_type2a(node
->type
), 64);
759 if (MDOC_ROOT
== node
->type
)
761 (void)xstrlcat(buf
, " `", 64);
762 if (MDOC_TEXT
== node
->type
)
763 (void)xstrlcat(buf
, node
->data
.text
.string
, 64);
765 (void)xstrlcat(buf
, mdoc_macronames
[node
->tok
], 64);
766 (void)xstrlcat(buf
, "'", 64);