]> git.cameronkatri.com Git - mandoc.git/blobdiff - libroff.h
Plug in the "head" concept for tables. A tbl_head specifies the full
[mandoc.git] / libroff.h
index d6f8f92df0d1778fee3302e630bdca24b4c8cd8b..1c9147b4e7b0d4b435fdeea8fdb4f45b18c8aa02 100644 (file)
--- a/libroff.h
+++ b/libroff.h
@@ -1,4 +1,4 @@
-/*     $Id: libroff.h,v 1.12 2011/01/01 15:45:18 kristaps Exp $ */
+/*     $Id: libroff.h,v 1.14 2011/01/01 22:19:15 kristaps Exp $ */
 /*
  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -47,6 +47,8 @@ struct        tbl {
        struct tbl_row   *last_row;
        struct tbl_span  *first_span;
        struct tbl_span  *last_span;
+       struct tbl_head  *first_head;
+       struct tbl_head  *last_head;
        struct tbl       *next;
 };
 
@@ -54,7 +56,7 @@ struct        tbl {
        (*(tblp)->msg)((type), (tblp)->data, (line), (col), NULL)
 
 struct tbl     *tbl_alloc(int, int, void *, mandocmsg);
-void            tbl_restart(struct tbl *);
+void            tbl_restart(int, int, struct tbl *);
 void            tbl_free(struct tbl *);
 void            tbl_reset(struct tbl *);
 enum rofferr    tbl_read(struct tbl *, int, const char *, int);