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

Diff for /mandoc/Attic/libroff.h between version 1.17 and 1.18

version 1.17, 2011/01/25 12:24:27 version 1.18, 2011/02/06 20:36:36
Line 43  struct tbl_node {
Line 43  struct tbl_node {
         struct tbl_node  *next;          struct tbl_node  *next;
 };  };
   
   struct  eqn_node {
           int               pos; /* invocation column */
           int               line; /* invocation line */
           struct eqn        eqn;
           struct eqn_node  *next;
   };
   
 #define TBL_MSG(tblp, type, line, col) \  #define TBL_MSG(tblp, type, line, col) \
         (*(tblp)->msg)((type), (tblp)->data, (line), (col), NULL)          (*(tblp)->msg)((type), (tblp)->data, (line), (col), NULL)
   
Line 57  int   tbl_data(struct tbl_node *, int, const char *);
Line 64  int   tbl_data(struct tbl_node *, int, const char *);
 int              tbl_cdata(struct tbl_node *, int, const char *);  int              tbl_cdata(struct tbl_node *, int, const char *);
 const struct tbl_span   *tbl_span(struct tbl_node *);  const struct tbl_span   *tbl_span(struct tbl_node *);
 void             tbl_end(struct tbl_node *);  void             tbl_end(struct tbl_node *);
   struct eqn_node *eqn_alloc(int, int);
   void             eqn_end(struct eqn_node *);
   void             eqn_free(struct eqn_node *);
   enum rofferr     eqn_read(struct eqn_node **, int, const char *, int);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb