summaryrefslogtreecommitdiffstats
path: root/term_tag.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-07-21 15:10:01 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-07-21 15:10:01 +0000
commit61d8492e62e86219a3d14042e27bd1aed009b47e (patch)
treeafc38eb3001d716864aef4b2fba4a64587fb87b9 /term_tag.h
parent06c14b62e9143056a352af5be1dc73b625bc149f (diff)
downloadmandoc-61d8492e62e86219a3d14042e27bd1aed009b47e.tar.gz
undocumented options -O outfilename and -O tagfilename
to support regression testing without a tty; no user visible change intended
Diffstat (limited to 'term_tag.h')
-rw-r--r--term_tag.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/term_tag.h b/term_tag.h
index 676a0008..7009d4c4 100644
--- a/term_tag.h
+++ b/term_tag.h
@@ -19,8 +19,8 @@
*/
struct tag_files {
- char ofn[20]; /* Output file name. */
- char tfn[20]; /* Tag file name. */
+ char ofn[80]; /* Output file name. */
+ char tfn[80]; /* Tag file name. */
FILE *tfs; /* Tag file object. */
int ofd; /* Original output file descriptor. */
pid_t tcpgid; /* Process group controlling the terminal. */
@@ -28,7 +28,7 @@ struct tag_files {
};
-struct tag_files *term_tag_init(void);
+struct tag_files *term_tag_init(const char *, const char *);
void term_tag_write(struct roff_node *, size_t);
int term_tag_close(void);
void term_tag_unlink(void);