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

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

version 1.17, 2010/06/27 15:52:41 version 1.20, 2010/12/28 10:51:03
Line 20 
Line 20 
 enum    rofferr {  enum    rofferr {
         ROFF_CONT, /* continue processing line */          ROFF_CONT, /* continue processing line */
         ROFF_RERUN, /* re-run roff interpreter with offset */          ROFF_RERUN, /* re-run roff interpreter with offset */
           ROFF_APPEND, /* re-run main parser, appending next line */
           ROFF_REPARSE, /* re-run main parser on the result */
           ROFF_SO, /* include another file */
         ROFF_IGN, /* ignore current line */          ROFF_IGN, /* ignore current line */
           ROFF_TBL, /* a table row was successfully parsed */
         ROFF_ERR /* badness: puke and stop */          ROFF_ERR /* badness: puke and stop */
 };  };
   
Line 29  __BEGIN_DECLS
Line 33  __BEGIN_DECLS
 struct  roff;  struct  roff;
   
 void              roff_free(struct roff *);  void              roff_free(struct roff *);
 struct  roff     *roff_alloc(struct regset *, mandocmsg, void *);  struct  roff     *roff_alloc(struct regset *, void *, mandocmsg);
 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 *);

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

CVSweb