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

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

version 1.7, 2010/12/29 16:44:23 version 1.8, 2010/12/30 09:34:06
Line 76  struct tbl_span {
Line 76  struct tbl_span {
         int               flags;          int               flags;
 #define TBL_SPAN_HORIZ  (1 << 0)  #define TBL_SPAN_HORIZ  (1 << 0)
 #define TBL_SPAN_DHORIZ (1 << 1)  #define TBL_SPAN_DHORIZ (1 << 1)
           struct tbl_span  *next;
 };  };
   
 struct  tbl {  struct  tbl {
Line 94  struct tbl {
Line 95  struct tbl {
 #define TBL_OPT_ALLBOX   (1 << 4)  #define TBL_OPT_ALLBOX   (1 << 4)
 #define TBL_OPT_NOKEEP   (1 << 5)  #define TBL_OPT_NOKEEP   (1 << 5)
 #define TBL_OPT_NOSPACE  (1 << 6)  #define TBL_OPT_NOSPACE  (1 << 6)
         struct tbl_row   *first;          struct tbl_row   *first_row;
         struct tbl_row   *last;          struct tbl_row   *last_row;
           struct tbl_span  *first_span;
           struct tbl_span  *last_span;
 };  };
   
 #define TBL_MSG(tblp, type, line, col) \  #define TBL_MSG(tblp, type, line, col) \
Line 108  void   tbl_reset(struct tbl *);
Line 111  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 *);  int              tbl_data(struct tbl *, int, const char *);
   
 __END_DECLS  __END_DECLS
   

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

CVSweb