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

Diff for /mandoc/Attic/private.h between version 1.15 and 1.16

version 1.15, 2008/11/28 15:25:49 version 1.16, 2008/11/29 14:14:21
Line 214  struct roffcb {
Line 214  struct roffcb {
         int     (*roffhead)(void *);          int     (*roffhead)(void *);
         int     (*rofftail)(void *);          int     (*rofftail)(void *);
         int     (*roffin)(void *, int, int *, char **);          int     (*roffin)(void *, int, int *, char **);
         int     (*roffdata)(void *, const char *);          int     (*roffdata)(void *, char *);
         int     (*roffout)(void *, int);          int     (*roffout)(void *, int);
         int     (*roffblkin)(void *, int);          int     (*roffblkin)(void *, int);
         int     (*roffblkout)(void *, int);          int     (*roffblkout)(void *, int);
Line 225  __BEGIN_DECLS
Line 225  __BEGIN_DECLS
   
 typedef void  (*(*md_init)(const struct md_args *,  typedef void  (*(*md_init)(const struct md_args *,
                         struct md_mbuf *, const struct md_rbuf *));                          struct md_mbuf *, const struct md_rbuf *));
 typedef int     (*md_line)(void *, char *, size_t);  typedef int     (*md_line)(void *, char *);
 typedef int     (*md_exit)(void *, int);  typedef int     (*md_exit)(void *, int);
   
 void             *md_init_html4_strict(const struct md_args *,  void             *md_init_html4_strict(const struct md_args *,
                         struct md_mbuf *, const struct md_rbuf *);                          struct md_mbuf *, const struct md_rbuf *);
 int               md_line_html4_strict(void *, char *, size_t);  int               md_line_html4_strict(void *, char *);
 int               md_exit_html4_strict(void *, int);  int               md_exit_html4_strict(void *, int);
   
 void             *md_init_valid(const struct md_args *,  void             *md_init_valid(const struct md_args *,
                         struct md_mbuf *, const struct md_rbuf *);                          struct md_mbuf *, const struct md_rbuf *);
 int               md_line_valid(void *, char *, size_t);  int               md_line_valid(void *, char *);
 int               md_exit_valid(void *, int);  int               md_exit_valid(void *, int);
   
 int               md_buf_puts(struct md_mbuf *, const char *, size_t);  int               md_buf_puts(struct md_mbuf *, const char *, size_t);
Line 245  int     md_buf_putstring(struct md_mbuf *, const char 
Line 245  int     md_buf_putstring(struct md_mbuf *, const char 
 struct  rofftree;  struct  rofftree;
   
 struct  rofftree *roff_alloc(const struct roffcb *, void *);  struct  rofftree *roff_alloc(const struct roffcb *, void *);
 int               roff_engine(struct rofftree *, char *, size_t);  int               roff_engine(struct rofftree *, char *);
 int               roff_free(struct rofftree *, int);  int               roff_free(struct rofftree *, int);
   
 __END_DECLS  __END_DECLS

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

CVSweb