diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-13 06:18:20 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-13 06:18:20 +0000 |
commit | ccbdd47386607104abcd70072254921c4c341b23 (patch) | |
tree | 7cd1aecc238322b82e9f0275e94a40c1d32ea81e /roff.h | |
parent | 5d4d2785b08ebc101f0eb519b9a0480a9c6f4b08 (diff) | |
download | mandoc-ccbdd47386607104abcd70072254921c4c341b23.tar.gz |
Cleanup, no functional change:
Move the roffhash_*() functions from roff.h to roff_int.h
because they are only intended for use by parsers,
neither by main programs nor by formatters.
Diffstat (limited to 'roff.h')
-rw-r--r-- | roff.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -14,6 +14,8 @@ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + * Common data types for all syntax trees and related functions. */ struct ohash; @@ -577,7 +579,4 @@ extern const char *const *roff_name; void deroff(char **, const struct roff_node *); -struct ohash *roffhash_alloc(enum roff_tok, enum roff_tok); -enum roff_tok roffhash_find(struct ohash *, const char *, size_t); -void roffhash_free(struct ohash *); void roff_validate(struct roff_man *); |