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

Diff for /mandoc/roff.h between version 1.20 and 1.25

version 1.20, 2010/12/28 10:51:03 version 1.25, 2011/03/20 16:02:05
Line 25  enum rofferr {
Line 25  enum rofferr {
         ROFF_SO, /* include another file */          ROFF_SO, /* include another file */
         ROFF_IGN, /* ignore current line */          ROFF_IGN, /* ignore current line */
         ROFF_TBL, /* a table row was successfully parsed */          ROFF_TBL, /* a table row was successfully parsed */
           ROFF_EQN, /* an equation was successfully parsed */
         ROFF_ERR /* badness: puke and stop */          ROFF_ERR /* badness: puke and stop */
 };  };
   
Line 33  __BEGIN_DECLS
Line 34  __BEGIN_DECLS
 struct  roff;  struct  roff;
   
 void              roff_free(struct roff *);  void              roff_free(struct roff *);
 struct  roff     *roff_alloc(struct regset *, void *, mandocmsg);  struct  roff     *roff_alloc(struct regset *, struct mparse *);
 void              roff_reset(struct roff *);  void              roff_reset(struct roff *);
 enum    rofferr   roff_parseln(struct roff *, int,  enum    rofferr   roff_parseln(struct roff *, int,
                         char **, size_t *, int, int *);                          char **, size_t *, int, int *);
 int               roff_endparse(struct roff *);  void              roff_endparse(struct roff *);
   const struct tbl_span *roff_span(const struct roff *);
   const struct eqn *roff_eqn(const struct roff *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.25

CVSweb