diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-15 10:14:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-15 10:14:12 +0000 |
commit | 5caeb724cd27a382f204c576714e33f0ec2b1b55 (patch) | |
tree | d73f767c13722d0ab3a6843de1385cf30ad671bc | |
parent | 1f34ea5f7ecf1e6a7b141be3c40cb0b104a609ad (diff) | |
download | mandoc-5caeb724cd27a382f204c576714e33f0ec2b1b55.tar.gz |
Expose mandoc_strdup() to the outside world.
-rw-r--r-- | mandoc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -324,6 +324,7 @@ const char *mparse_strlevel(enum mandoclevel); void *mandoc_calloc(size_t, size_t); void *mandoc_malloc(size_t); void *mandoc_realloc(void *, size_t); +char *mandoc_strdup(const char *); enum mandoc_esc mandoc_escape(const char **, const char **, int *); |