=================================================================== RCS file: /cvs/mandoc/man.c,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- mandoc/man.c 2014/03/23 11:25:26 1.125 +++ mandoc/man.c 2014/03/23 12:26:58 1.126 @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.125 2014/03/23 11:25:26 schwarze Exp $ */ +/* $Id: man.c,v 1.126 2014/03/23 12:26:58 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -705,4 +706,43 @@ man_mparse(const struct man *man) assert(man && man->parse); return(man->parse); +} + +void +man_deroff(char **dest, const struct man_node *n) +{ + char *cp; + size_t sz; + + if (MAN_TEXT != n->type) { + for (n = n->child; n; n = n->next) + man_deroff(dest, n); + return; + } + + /* Skip leading whitespace. */ + + for (cp = n->string; '\0' != *cp; cp++) + if (0 == isspace((unsigned char)*cp)) + break; + + /* Skip trailing whitespace. */ + + for (sz = strlen(cp); sz; sz--) + if (0 == isspace((unsigned char)cp[sz-1])) + break; + + /* Skip empty strings. */ + + if (0 == sz) + return; + + if (NULL == *dest) { + *dest = mandoc_strndup(cp, sz); + return; + } + + mandoc_asprintf(&cp, "%s %*s", *dest, (int)sz, cp); + free(*dest); + *dest = cp; }