[BACK]Return to libroff.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/libroff.h between version 1.6 and 1.7

version 1.6, 2010/12/29 14:53:31 version 1.7, 2010/12/29 16:44:23
Line 60  struct tbl_row {
Line 60  struct tbl_row {
         struct tbl_cell  *last;          struct tbl_cell  *last;
 };  };
   
   struct  tbl_dat {
           struct tbl_dat   *next;
           char             *string;
           int               flags;
   #define TBL_DATA_HORIZ   (1 << 0)
   #define TBL_DATA_DHORIZ  (1 << 1)
   #define TBL_DATA_NHORIZ  (1 << 2)
   #define TBL_DATA_NDHORIZ (1 << 3)
   };
   
   struct  tbl_span {
           struct tbl_dat   *first;
           struct tbl_dat   *last;
           int               flags;
   #define TBL_SPAN_HORIZ  (1 << 0)
   #define TBL_SPAN_DHORIZ (1 << 1)
   };
   
 struct  tbl {  struct  tbl {
         mandocmsg         msg; /* status messages */          mandocmsg         msg; /* status messages */
         void             *data; /* privdata for messages */          void             *data; /* privdata for messages */
Line 90  void   tbl_reset(struct tbl *);
Line 108  void   tbl_reset(struct tbl *);
 enum rofferr     tbl_read(struct tbl *, int, const char *, int);  enum rofferr     tbl_read(struct tbl *, int, const char *, int);
 int              tbl_option(struct tbl *, int, const char *);  int              tbl_option(struct tbl *, int, const char *);
 int              tbl_layout(struct tbl *, int, const char *);  int              tbl_layout(struct tbl *, int, const char *);
   struct tbl_span *tbl_data(struct tbl *, int, const char *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb