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

Diff for /mandoc/libmandoc.h between version 1.52 and 1.55

version 1.52, 2014/12/21 14:14:35 version 1.55, 2015/01/15 04:26:39
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 61  struct mdoc *mdoc_alloc(struct roff *, struct mparse *
Line 60  struct mdoc *mdoc_alloc(struct roff *, struct mparse *
                         const char *, int);                          const char *, int);
 void             mdoc_reset(struct mdoc *);  void             mdoc_reset(struct mdoc *);
 int              mdoc_parseln(struct mdoc *, int, char *, int);  int              mdoc_parseln(struct mdoc *, int, char *, int);
 int              mdoc_endparse(struct mdoc *);  void             mdoc_endparse(struct mdoc *);
 void             mdoc_addspan(struct mdoc *, const struct tbl_span *);  void             mdoc_addspan(struct mdoc *, const struct tbl_span *);
 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 *);  void             man_endparse(struct man *);
 void             man_addspan(struct man *, const struct tbl_span *);  void             man_addspan(struct man *, const struct tbl_span *);
 void             man_addeqn(struct man *, const struct eqn *);  void             man_addeqn(struct man *, const struct eqn *);
   

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.55

CVSweb