[BACK]Return to libroff.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/Attic/libroff.h between version 1.2 and 1.3

version 1.2, 2011/01/25 12:24:26 version 1.3, 2011/03/20 23:36:42
Line 43 
Line 43 
         struct tbl_node  *next;          struct tbl_node  *next;
 };  };
   
   struct  eqn_node {
           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 
Line 62 
 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.2  
changed lines
  Added in v.1.3