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

Diff for /mandoc/Attic/libroff.h between version 1.21 and 1.22

version 1.21, 2011/07/12 21:32:43 version 1.22, 2011/07/17 12:13:37
Line 42  struct tbl_node {
Line 42  struct tbl_node {
         struct tbl_node  *next;          struct tbl_node  *next;
 };  };
   
   struct  eqn_def {
           char             *key;
           size_t            keysz;
           char             *val;
           size_t            valsz;
   };
   
 struct  eqn_node {  struct  eqn_node {
           struct eqn_def   *defs;
           size_t            defsz;
         struct eqn        eqn;          struct eqn        eqn;
         struct eqn_node  *next;  
         struct mparse    *parse;          struct mparse    *parse;
           struct eqn_node  *next;
 };  };
   
 struct tbl_node *tbl_alloc(int, int, struct mparse *);  struct tbl_node *tbl_alloc(int, int, struct mparse *);
Line 62  void   tbl_end(struct tbl_node *);
Line 71  void   tbl_end(struct tbl_node *);
 struct eqn_node *eqn_alloc(int, int, struct mparse *);  struct eqn_node *eqn_alloc(int, int, struct mparse *);
 void             eqn_end(struct eqn_node *);  void             eqn_end(struct eqn_node *);
 void             eqn_free(struct eqn_node *);  void             eqn_free(struct eqn_node *);
 enum rofferr     eqn_read(struct eqn_node **, int, const char *, int);  enum rofferr     eqn_read(struct eqn_node **, int,
                           const char *, int, int *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

CVSweb