diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-14 16:06:08 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-14 16:06:08 +0000 |
commit | 060aa662da1355a03d3193d7e0dcd9b0bbc33ccc (patch) | |
tree | ca1f2c782e5a1569bba81bda878c94b56f4a3b58 /libmandoc.h | |
parent | e0e21a567e51c014b019aee34241e8ae82a2eaca (diff) | |
download | mandoc-060aa662da1355a03d3193d7e0dcd9b0bbc33ccc.tar.gz |
Move roff.c's strtol into libmandoc.h for use by other parts of the code
(which will come).
Diffstat (limited to 'libmandoc.h')
-rw-r--r-- | libmandoc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmandoc.h b/libmandoc.h index cdfa2c6e..f2564933 100644 --- a/libmandoc.h +++ b/libmandoc.h @@ -79,6 +79,7 @@ char *mandoc_normdate(struct mparse *, char *, int, int); int mandoc_eos(const char *, size_t, int); int mandoc_hyph(const char *, const char *); int mandoc_getcontrol(const char *, int *); +int mandoc_strntou(const char *, size_t, int); void mdoc_free(struct mdoc *); struct mdoc *mdoc_alloc(struct regset *, struct mparse *); |