diff options
Diffstat (limited to 'libroff.h')
-rw-r--r-- | libroff.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -61,6 +61,7 @@ struct tbl_row { }; struct tbl_dat { + struct tbl_cell *layout; /* layout cell: CAN BE NULL */ struct tbl_dat *next; char *string; int flags; @@ -71,6 +72,7 @@ struct tbl_dat { }; struct tbl_span { + struct tbl_row *layout; /* layout row: CAN BE NULL */ struct tbl_dat *first; struct tbl_dat *last; int flags; |