]>
git.cameronkatri.com Git - mandoc.git/blob - roff.c
b062d6a903a5835a43969a96d9756fce77792b61
1 /* $Id: roff.c,v 1.104 2010/12/01 10:31:35 kristaps Exp $ */
3 * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
32 #include "libmandoc.h"
34 #define RSTACK_MAX 128
37 ('.' == (c) || '\'' == (c))
40 #define ROFF_DEBUG(fmt, args...) \
41 do { /* Nothing. */ } while (/*CONSTCOND*/ 0)
43 #define ROFF_DEBUG(fmt, args...) \
44 do { fprintf(stderr, fmt , ##args); } while (/*CONSTCOND*/ 0)
67 ROFF_ccond
, /* FIXME: remove this. */
78 char *name
; /* key of symbol */
79 char *string
; /* current value */
80 struct roffstr
*next
; /* next in list */
84 struct roffnode
*last
; /* leaf of stack */
85 mandocmsg msg
; /* err/warn/fatal messages */
86 void *data
; /* privdata for messages */
87 enum roffrule rstack
[RSTACK_MAX
]; /* stack of !`ie' rules */
88 int rstackpos
; /* position in rstack */
89 struct regset
*regs
; /* read/writable registers */
90 struct roffstr
*first_string
;
94 enum rofft tok
; /* type of node */
95 struct roffnode
*parent
; /* up one in stack */
96 int line
; /* parse line */
97 int col
; /* parse col */
98 char *end
; /* end-rules: custom token */
99 int endspan
; /* end-rules: next-line or infty */
100 enum roffrule rule
; /* current evaluation rule */
103 #define ROFF_ARGS struct roff *r, /* parse ctx */ \
104 enum rofft tok, /* tok of macro */ \
105 char **bufp, /* input buffer */ \
106 size_t *szp, /* size of input buffer */ \
107 int ln, /* parse line */ \
108 int ppos, /* original pos in buffer */ \
109 int pos, /* current pos in buffer */ \
110 int *offs /* reset offset of buffer data */
112 typedef enum rofferr (*roffproc
)(ROFF_ARGS
);
115 const char *name
; /* macro name */
116 roffproc proc
; /* process new macro */
117 roffproc text
; /* process as child text of macro */
118 roffproc sub
; /* process as child of macro */
120 #define ROFFMAC_STRUCT (1 << 0) /* always interpret */
121 struct roffmac
*next
;
124 static enum rofferr
roff_block(ROFF_ARGS
);
125 static enum rofferr
roff_block_text(ROFF_ARGS
);
126 static enum rofferr
roff_block_sub(ROFF_ARGS
);
127 static enum rofferr
roff_cblock(ROFF_ARGS
);
128 static enum rofferr
roff_ccond(ROFF_ARGS
);
129 static enum rofferr
roff_cond(ROFF_ARGS
);
130 static enum rofferr
roff_cond_text(ROFF_ARGS
);
131 static enum rofferr
roff_cond_sub(ROFF_ARGS
);
132 static enum rofferr
roff_ds(ROFF_ARGS
);
133 static enum roffrule
roff_evalcond(const char *, int *);
134 static void roff_freestr(struct roff
*);
135 static const char *roff_getstrn(const struct roff
*,
136 const char *, size_t);
137 static enum rofferr
roff_line_ignore(ROFF_ARGS
);
138 static enum rofferr
roff_line_error(ROFF_ARGS
);
139 static enum rofferr
roff_nr(ROFF_ARGS
);
140 static int roff_res(struct roff
*,
141 char **, size_t *, int);
142 static void roff_setstr(struct roff
*,
143 const char *, const char *);
144 static char *roff_strdup(const char *);
146 /* See roff_hash_find() */
150 #define HASHWIDTH (ASCII_HI - ASCII_LO + 1)
152 static struct roffmac
*hash
[HASHWIDTH
];
154 static struct roffmac roffs
[ROFF_MAX
] = {
155 { "ad", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
156 { "am", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
157 { "ami", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
158 { "am1", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
159 { "de", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
160 { "dei", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
161 { "de1", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
162 { "ds", roff_ds
, NULL
, NULL
, 0, NULL
},
163 { "el", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
164 { "hy", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
165 { "ie", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
166 { "if", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
167 { "ig", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
168 { "ne", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
169 { "nh", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
170 { "nr", roff_nr
, NULL
, NULL
, 0, NULL
},
171 { "rm", roff_line_error
, NULL
, NULL
, 0, NULL
},
172 { "tr", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
173 { ".", roff_cblock
, NULL
, NULL
, 0, NULL
},
174 { "\\}", roff_ccond
, NULL
, NULL
, 0, NULL
},
177 static void roff_free1(struct roff
*);
178 static enum rofft
roff_hash_find(const char *);
179 static void roff_hash_init(void);
180 static void roffnode_cleanscope(struct roff
*);
181 static void roffnode_push(struct roff
*,
182 enum rofft
, int, int);
183 static void roffnode_pop(struct roff
*);
184 static enum rofft
roff_parse(const char *, int *);
185 static int roff_parse_nat(const char *, unsigned int *);
187 /* See roff_hash_find() */
188 #define ROFF_HASH(p) (p[0] - ASCII_LO)
196 for (i
= 0; i
< (int)ROFF_MAX
; i
++) {
197 assert(roffs
[i
].name
[0] >= ASCII_LO
);
198 assert(roffs
[i
].name
[0] <= ASCII_HI
);
200 buc
= ROFF_HASH(roffs
[i
].name
);
202 if (NULL
!= (n
= hash
[buc
])) {
203 for ( ; n
->next
; n
= n
->next
)
207 hash
[buc
] = &roffs
[i
];
213 * Look up a roff token by its name. Returns ROFF_MAX if no macro by
214 * the nil-terminated string name could be found.
217 roff_hash_find(const char *p
)
223 * libroff has an extremely simple hashtable, for the time
224 * being, which simply keys on the first character, which must
225 * be printable, then walks a chain. It works well enough until
229 if (p
[0] < ASCII_LO
|| p
[0] > ASCII_HI
)
234 if (NULL
== (n
= hash
[buc
]))
236 for ( ; n
; n
= n
->next
)
237 if (0 == strcmp(n
->name
, p
))
238 return((enum rofft
)(n
- roffs
));
245 * Pop the current node off of the stack of roff instructions currently
249 roffnode_pop(struct roff
*r
)
256 if (ROFF_el
== p
->tok
)
257 if (r
->rstackpos
> -1)
260 ROFF_DEBUG("roff: popping scope\n");
261 r
->last
= r
->last
->parent
;
269 * Push a roff node onto the instruction stack. This must later be
270 * removed with roffnode_pop().
273 roffnode_push(struct roff
*r
, enum rofft tok
, int line
, int col
)
277 p
= mandoc_calloc(1, sizeof(struct roffnode
));
282 p
->rule
= p
->parent
? p
->parent
->rule
: ROFFRULE_DENY
;
289 roff_free1(struct roff
*r
)
299 roff_reset(struct roff
*r
)
307 roff_free(struct roff
*r
)
316 roff_alloc(struct regset
*regs
, void *data
, const mandocmsg msg
)
320 r
= mandoc_calloc(1, sizeof(struct roff
));
332 * Pre-filter each and every line for reserved words (one beginning with
333 * `\*', e.g., `\*(ab'). These must be handled before the actual line
337 roff_res(struct roff
*r
, char **bufp
, size_t *szp
, int pos
)
339 const char *cp
, *cpp
, *st
, *res
;
345 for (cp
= &(*bufp
)[pos
]; (cpp
= strstr(cp
, "\\*")); cp
++) {
363 for (i
= 0; 0 == maxl
|| i
< maxl
; i
++, cp
++) {
365 return(1); /* Error. */
366 if (0 == maxl
&& ']' == *cp
)
370 res
= roff_getstrn(r
, st
, (size_t)i
);
377 ROFF_DEBUG("roff: splicing reserved: [%.*s]\n", i
, st
);
379 nsz
= *szp
+ strlen(res
) + 1;
380 n
= mandoc_malloc(nsz
);
384 strlcat(n
, *bufp
, (size_t)(cpp
- *bufp
+ 1));
385 strlcat(n
, res
, nsz
);
386 strlcat(n
, cp
+ (maxl
? 0 : 1), nsz
);
400 roff_parseln(struct roff
*r
, int ln
, char **bufp
,
401 size_t *szp
, int pos
, int *offs
)
407 * Run the reserved-word filter only if we have some reserved
411 if (r
->first_string
&& ! roff_res(r
, bufp
, szp
, pos
))
415 * First, if a scope is open and we're not a macro, pass the
416 * text through the macro's filter. If a scope isn't open and
417 * we're not a macro, just let it through.
420 if (r
->last
&& ! ROFF_CTL((*bufp
)[pos
])) {
422 assert(roffs
[t
].text
);
423 ROFF_DEBUG("roff: intercept scoped text: %s, [%s]\n",
424 roffs
[t
].name
, &(*bufp
)[pos
]);
425 return((*roffs
[t
].text
)
427 ln
, pos
, pos
, offs
));
428 } else if ( ! ROFF_CTL((*bufp
)[pos
]))
432 * If a scope is open, go to the child handler for that macro,
433 * as it may want to preprocess before doing anything with it.
438 assert(roffs
[t
].sub
);
439 ROFF_DEBUG("roff: intercept scoped context: %s, [%s]\n",
440 roffs
[t
].name
, &(*bufp
)[pos
]);
441 return((*roffs
[t
].sub
)
443 ln
, pos
, pos
, offs
));
447 * Lastly, as we've no scope open, try to look up and execute
448 * the new macro. If no macro is found, simply return and let
449 * the compilers handle it.
453 if (ROFF_MAX
== (t
= roff_parse(*bufp
, &pos
)))
456 ROFF_DEBUG("roff: intercept new-scope: %s, [%s]\n",
457 roffs
[t
].name
, &(*bufp
)[pos
]);
458 assert(roffs
[t
].proc
);
459 return((*roffs
[t
].proc
)
461 ln
, ppos
, pos
, offs
));
466 roff_endparse(struct roff
*r
)
471 return((*r
->msg
)(MANDOCERR_SCOPEEXIT
, r
->data
, r
->last
->line
,
472 r
->last
->col
, NULL
));
477 * Parse a roff node's type from the input buffer. This must be in the
478 * form of ".foo xxx" in the usual way.
481 roff_parse(const char *buf
, int *pos
)
487 assert(ROFF_CTL(buf
[*pos
]));
490 while (buf
[*pos
] && (' ' == buf
[*pos
] || '\t' == buf
[*pos
]))
493 if ('\0' == buf
[*pos
])
496 for (j
= 0; j
< 4; j
++, (*pos
)++)
497 if ('\0' == (mac
[j
] = buf
[*pos
]))
499 else if (' ' == buf
[*pos
] || (j
&& '\\' == buf
[*pos
]))
507 if (ROFF_MAX
== (t
= roff_hash_find(mac
)))
510 while (buf
[*pos
] && ' ' == buf
[*pos
])
518 roff_parse_nat(const char *buf
, unsigned int *res
)
524 lval
= strtol(buf
, &ep
, 10);
525 if (buf
[0] == '\0' || *ep
!= '\0')
527 if ((errno
== ERANGE
&&
528 (lval
== LONG_MAX
|| lval
== LONG_MIN
)) ||
529 (lval
> INT_MAX
|| lval
< 0))
532 *res
= (unsigned int)lval
;
539 roff_cblock(ROFF_ARGS
)
543 * A block-close `..' should only be invoked as a child of an
544 * ignore macro, otherwise raise a warning and just ignore it.
547 if (NULL
== r
->last
) {
548 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
553 switch (r
->last
->tok
) {
569 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
575 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
579 roffnode_cleanscope(r
);
586 roffnode_cleanscope(struct roff
*r
)
590 if (--r
->last
->endspan
< 0)
599 roff_ccond(ROFF_ARGS
)
602 if (NULL
== r
->last
) {
603 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
608 switch (r
->last
->tok
) {
616 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
621 if (r
->last
->endspan
> -1) {
622 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
628 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
632 roffnode_cleanscope(r
);
639 roff_block(ROFF_ARGS
)
644 if (ROFF_ig
!= tok
&& '\0' == (*bufp
)[pos
]) {
645 if ( ! (*r
->msg
)(MANDOCERR_NOARGS
, r
->data
, ln
, ppos
, NULL
))
648 } else if (ROFF_ig
!= tok
) {
649 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
])
651 while (' ' == (*bufp
)[pos
])
655 roffnode_push(r
, tok
, ln
, ppos
);
657 if ('\0' == (*bufp
)[pos
])
661 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
] &&
662 '\t' != (*bufp
)[pos
])
666 * Note: groff does NOT like escape characters in the input.
667 * Instead of detecting this, we're just going to let it fly and
672 sz
= (size_t)(pos
- sv
);
674 if (1 == sz
&& '.' == (*bufp
)[sv
])
677 r
->last
->end
= mandoc_malloc(sz
+ 1);
679 memcpy(r
->last
->end
, *bufp
+ sv
, sz
);
680 r
->last
->end
[(int)sz
] = '\0';
683 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
692 roff_block_sub(ROFF_ARGS
)
698 * First check whether a custom macro exists at this level. If
699 * it does, then check against it. This is some of groff's
700 * stranger behaviours. If we encountered a custom end-scope
701 * tag and that tag also happens to be a "real" macro, then we
702 * need to try interpreting it again as a real macro. If it's
703 * not, then return ignore. Else continue.
708 while (' ' == (*bufp
)[i
] || '\t' == (*bufp
)[i
])
711 for (j
= 0; r
->last
->end
[j
]; j
++, i
++)
712 if ((*bufp
)[i
] != r
->last
->end
[j
])
715 if ('\0' == r
->last
->end
[j
] &&
716 ('\0' == (*bufp
)[i
] ||
718 '\t' == (*bufp
)[i
])) {
720 roffnode_cleanscope(r
);
722 if (ROFF_MAX
!= roff_parse(*bufp
, &pos
))
729 * If we have no custom end-query or lookup failed, then try
730 * pulling it out of the hashtable.
734 t
= roff_parse(*bufp
, &pos
);
736 /* If we're not a comment-end, then throw it away. */
737 if (ROFF_cblock
!= t
)
740 assert(roffs
[t
].proc
);
741 return((*roffs
[t
].proc
)(r
, t
, bufp
, szp
,
742 ln
, ppos
, pos
, offs
));
748 roff_block_text(ROFF_ARGS
)
757 roff_cond_sub(ROFF_ARGS
)
766 * Clean out scope. If we've closed ourselves, then don't
770 roffnode_cleanscope(r
);
772 if (ROFF_MAX
== (t
= roff_parse(*bufp
, &pos
))) {
773 if ('\\' == (*bufp
)[pos
] && '}' == (*bufp
)[pos
+ 1])
775 (r
, ROFF_ccond
, bufp
, szp
,
776 ln
, pos
, pos
+ 2, offs
));
777 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
781 * A denied conditional must evaluate its children if and only
782 * if they're either structurally required (such as loops and
783 * conditionals) or a closing macro.
785 if (ROFFRULE_DENY
== rr
)
786 if ( ! (ROFFMAC_STRUCT
& roffs
[t
].flags
))
790 assert(roffs
[t
].proc
);
791 return((*roffs
[t
].proc
)(r
, t
, bufp
, szp
,
792 ln
, ppos
, pos
, offs
));
798 roff_cond_text(ROFF_ARGS
)
806 * We display the value of the text if out current evaluation
807 * scope permits us to do so.
810 /* FIXME: use roff_ccond? */
813 if (NULL
== (ep
= strstr(st
, "\\}"))) {
814 roffnode_cleanscope(r
);
815 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
818 if (ep
== st
|| (ep
> st
&& '\\' != *(ep
- 1)))
821 roffnode_cleanscope(r
);
822 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
827 roff_evalcond(const char *v
, int *pos
)
833 return(ROFFRULE_ALLOW
);
840 return(ROFFRULE_DENY
);
845 while (v
[*pos
] && ' ' != v
[*pos
])
847 return(ROFFRULE_DENY
);
852 roff_line_ignore(ROFF_ARGS
)
860 roff_line_error(ROFF_ARGS
)
863 (*r
->msg
)(MANDOCERR_REQUEST
, r
->data
, ln
, ppos
, roffs
[tok
].name
);
874 /* Stack overflow! */
876 if (ROFF_ie
== tok
&& r
->rstackpos
== RSTACK_MAX
- 1) {
877 (*r
->msg
)(MANDOCERR_MEM
, r
->data
, ln
, ppos
, NULL
);
881 /* First, evaluate the conditional. */
883 if (ROFF_el
== tok
) {
885 * An `.el' will get the value of the current rstack
886 * entry set in prior `ie' calls or defaults to DENY.
888 if (r
->rstackpos
< 0)
889 rule
= ROFFRULE_DENY
;
891 rule
= r
->rstack
[r
->rstackpos
];
893 rule
= roff_evalcond(*bufp
, &pos
);
897 while (' ' == (*bufp
)[pos
])
901 * Roff is weird. If we have just white-space after the
902 * conditional, it's considered the BODY and we exit without
903 * really doing anything. Warn about this. It's probably
907 if ('\0' == (*bufp
)[pos
] && sv
!= pos
) {
908 if ((*r
->msg
)(MANDOCERR_NOARGS
, r
->data
, ln
, ppos
, NULL
))
913 roffnode_push(r
, tok
, ln
, ppos
);
915 r
->last
->rule
= rule
;
917 ROFF_DEBUG("roff: cond: %s -> %s\n", roffs
[tok
].name
,
918 ROFFRULE_ALLOW
== rule
? "allow" : "deny");
920 if (ROFF_ie
== tok
) {
922 * An if-else will put the NEGATION of the current
923 * evaluated conditional into the stack.
926 if (ROFFRULE_DENY
== r
->last
->rule
)
927 r
->rstack
[r
->rstackpos
] = ROFFRULE_ALLOW
;
929 r
->rstack
[r
->rstackpos
] = ROFFRULE_DENY
;
932 /* If the parent has false as its rule, then so do we. */
934 if (r
->last
->parent
&& ROFFRULE_DENY
== r
->last
->parent
->rule
) {
935 r
->last
->rule
= ROFFRULE_DENY
;
936 ROFF_DEBUG("roff: cond override: %s -> deny\n",
941 * Determine scope. If we're invoked with "\{" trailing the
942 * conditional, then we're in a multiline scope. Else our scope
943 * expires on the next line.
946 r
->last
->endspan
= 1;
948 if ('\\' == (*bufp
)[pos
] && '{' == (*bufp
)[pos
+ 1]) {
949 r
->last
->endspan
= -1;
951 ROFF_DEBUG("roff: cond-scope: %s, multi-line\n",
954 ROFF_DEBUG("roff: cond-scope: %s, one-line\n",
958 * If there are no arguments on the line, the next-line scope is
962 if ('\0' == (*bufp
)[pos
])
965 /* Otherwise re-run the roff parser after recalculating. */
979 * A symbol is named by the first word following the macro
980 * invocation up to a space. Its value is anything after the
981 * name's trailing whitespace and optional double-quote. Thus,
985 * will have `bar " ' as its value.
993 /* Read until end of name. */
994 while (*string
&& ' ' != *string
)
997 /* Nil-terminate name. */
1001 /* Read past spaces. */
1002 while (*string
&& ' ' == *string
)
1005 /* Read passed initial double-quote. */
1006 if (*string
&& '"' == *string
)
1009 /* The rest is the value. */
1010 roff_setstr(r
, name
, string
);
1019 const char *key
, *val
;
1022 key
= &(*bufp
)[pos
];
1025 /* Parse register request. */
1026 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
])
1030 * Set our nil terminator. Because this line is going to be
1031 * ignored anyway, we can munge it as we please.
1034 (*bufp
)[pos
++] = '\0';
1036 /* Skip whitespace to register token. */
1037 while ((*bufp
)[pos
] && ' ' == (*bufp
)[pos
])
1040 val
= &(*bufp
)[pos
];
1042 /* Process register token. */
1044 if (0 == strcmp(key
, "nS")) {
1045 rg
[(int)REG_nS
].set
= 1;
1046 if ( ! roff_parse_nat(val
, &rg
[(int)REG_nS
].v
.u
))
1047 rg
[(int)REG_nS
].v
.u
= 0;
1049 ROFF_DEBUG("roff: register nS: %u\n",
1050 rg
[(int)REG_nS
].v
.u
);
1052 ROFF_DEBUG("roff: ignoring register: %s\n", key
);
1059 roff_strdup(const char *name
)
1061 char *namecopy
, *sv
;
1064 * This isn't a nice simple mandoc_strdup() because we must
1065 * handle roff's stupid double-escape rule.
1067 sv
= namecopy
= mandoc_malloc(strlen(name
) + 1);
1069 if ('\\' == *name
&& '\\' == *(name
+ 1))
1071 *namecopy
++ = *name
++;
1080 roff_setstr(struct roff
*r
, const char *name
, const char *string
)
1085 n
= r
->first_string
;
1086 while (n
&& strcmp(name
, n
->name
))
1090 namecopy
= mandoc_strdup(name
);
1091 n
= mandoc_malloc(sizeof(struct roffstr
));
1093 n
->next
= r
->first_string
;
1094 r
->first_string
= n
;
1098 /* Don't use mandoc_strdup: clean out double-escapes. */
1099 n
->string
= string
? roff_strdup(string
) : NULL
;
1100 ROFF_DEBUG("roff: new symbol: [%s] = [%s]\n", name
, n
->string
);
1105 roff_getstrn(const struct roff
*r
, const char *name
, size_t len
)
1107 const struct roffstr
*n
;
1109 n
= r
->first_string
;
1110 while (n
&& (strncmp(name
, n
->name
, len
) || '\0' != n
->name
[(int)len
]))
1113 return(n
? n
->string
: NULL
);
1118 roff_freestr(struct roff
*r
)
1120 struct roffstr
*n
, *nn
;
1122 for (n
= r
->first_string
; n
; n
= nn
) {
1129 r
->first_string
= NULL
;