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

Diff for /mandoc/libmandoc.h between version 1.50 and 1.54

version 1.50, 2014/12/01 04:05:32 version 1.54, 2015/01/14 22:58:16
Line 24  enum rofferr {
Line 24  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_EQN /* an equation was successfully parsed */
         ROFF_ERR /* badness: puke and stop */  
 };  };
   
 struct  buf {  struct  buf {
Line 35  struct buf {
Line 34  struct buf {
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
   struct  mparse;
   struct  mchars;
   struct  tbl_span;
   struct  eqn;
 struct  roff;  struct  roff;
 struct  mdoc;  struct  mdoc;
 struct  man;  struct  man;
Line 62  void   mdoc_addspan(struct mdoc *, const struct tbl_sp
Line 65  void   mdoc_addspan(struct mdoc *, const struct tbl_sp
 void             mdoc_addeqn(struct mdoc *, const struct eqn *);  void             mdoc_addeqn(struct mdoc *, const struct eqn *);
   
 void             man_free(struct man *);  void             man_free(struct man *);
 struct  man     *man_alloc(struct roff *, struct mparse *, int);  struct  man     *man_alloc(struct roff *, struct mparse *,
                           const char *, int);
 void             man_reset(struct man *);  void             man_reset(struct man *);
 int              man_parseln(struct man *, int, char *, int);  int              man_parseln(struct man *, int, char *, int);
 int              man_endparse(struct man *);  int              man_endparse(struct man *);

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.54

CVSweb