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

Diff for /mandoc/man.h between version 1.49 and 1.50

version 1.49, 2010/12/26 14:44:13 version 1.50, 2011/01/01 12:59:17
Line 66  enum man_type {
Line 66  enum man_type {
         MAN_ROOT,          MAN_ROOT,
         MAN_BLOCK,          MAN_BLOCK,
         MAN_HEAD,          MAN_HEAD,
         MAN_BODY          MAN_BODY,
           MAN_TBL
 };  };
   
 /*  /*
Line 100  struct man_node {
Line 101  struct man_node {
         char            *string; /* TEXT node argument */          char            *string; /* TEXT node argument */
         struct man_node *head; /* BLOCK node HEAD ptr */          struct man_node *head; /* BLOCK node HEAD ptr */
         struct man_node *body; /* BLOCK node BODY ptr */          struct man_node *body; /* BLOCK node BODY ptr */
           const struct tbl_span *span; /* TBL */
 };  };
   
 /*  /*
Line 117  struct man  *man_alloc(struct regset *, void *, mandoc
Line 119  struct man  *man_alloc(struct regset *, void *, mandoc
 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 *);
   int               man_addspan(struct man *,
                           const struct tbl_span *);
   
 const struct man_node *man_node(const struct man *);  const struct man_node *man_node(const struct man *);
 const struct man_meta *man_meta(const struct man *);  const struct man_meta *man_meta(const struct man *);

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

CVSweb