summaryrefslogtreecommitdiffstatshomepage
path: root/ascii.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-20 15:14:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-20 15:14:01 +0000
commitc77635473d2482e2462a6d24ba39e43e5ea6ed64 (patch)
tree27fdbb70907287167ccf1c7366ff0a668e882c8d /ascii.c
parentb4ee9d6b1b8964750454bb66e67aa323b06752a9 (diff)
downloadmandoc-c77635473d2482e2462a6d24ba39e43e5ea6ed64.tar.gz
mandoc-c77635473d2482e2462a6d24ba39e43e5ea6ed64.tar.zst
mandoc-c77635473d2482e2462a6d24ba39e43e5ea6ed64.zip
Support for `Bd' of all types (see mdoc.7 for newline/tab rules).VERSION_1_6_2
Renamed term.c and terminal.c functions to be term_. Some bugfixes to lists.
Diffstat (limited to 'ascii.c')
-rw-r--r--ascii.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ascii.c b/ascii.c
index 0ff1d9a9..999f732c 100644
--- a/ascii.c
+++ b/ascii.c
@@ -1,4 +1,4 @@
-/* $Id: ascii.c,v 1.2 2009/03/17 13:35:46 kristaps Exp $ */
+/* $Id: ascii.c,v 1.3 2009/03/20 15:14:01 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -62,7 +62,7 @@ static inline int match(const struct line *,
void
-asciifree(void *arg)
+term_asciifree(void *arg)
{
struct asciitab *tab;
@@ -75,7 +75,7 @@ asciifree(void *arg)
void *
-ascii2htab(void)
+term_ascii2htab(void)
{
struct asciitab *tab;
void **htab;
@@ -132,7 +132,7 @@ ascii2htab(void)
const char *
-a2ascii(void *arg, const char *p, size_t sz, size_t *rsz)
+term_a2ascii(void *arg, const char *p, size_t sz, size_t *rsz)
{
struct asciitab *tab;
struct linep *pp, *prev;