]> git.cameronkatri.com Git - mandoc.git/blobdiff - roff.h
This one needs config.h too, if only for __BEGIN_DECLS.
[mandoc.git] / roff.h
diff --git a/roff.h b/roff.h
index fd73ad737e543d21da521d75233db0db56a92a41..750ccbe2686c8cf4d4d3e1ece4cd8f7712af29df 100644 (file)
--- a/roff.h
+++ b/roff.h
@@ -97,6 +97,7 @@ struct        roff_node {
        int               line;    /* Input file line number. */
        int               pos;     /* Input file column number. */
        int               tok;     /* Request or macro ID. */
+#define        TOKEN_NONE       (-1)      /* No request or macro. */
        int               flags;
 #define        MDOC_VALID       (1 << 0)  /* Has been validated. */
 #define        MDOC_ENDED       (1 << 1)  /* Gone past body end mark. */
@@ -156,3 +157,9 @@ struct      roff_man {
        enum roff_sec     lastnamed; /* Last standard section seen. */
        enum roff_next    next;    /* Where to put the next node. */
 };
+
+__BEGIN_DECLS
+
+void            deroff(char **, const struct roff_node *);
+
+__END_DECLS