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

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

version 1.14, 2008/11/28 11:21:12 version 1.15, 2008/11/28 15:25:49
Line 209  extern const char *const *tokargnames;
Line 209  extern const char *const *tokargnames;
 enum    roffmsg { ROFF_WARN, ROFF_ERROR };  enum    roffmsg { ROFF_WARN, ROFF_ERROR };
   
 struct  roffcb {  struct  roffcb {
         void    (*roffmsg)(const struct md_args *, enum roffmsg,          void    (*roffmsg)(void *, enum roffmsg,
                         const char *, const char *, const char *,                          const char *, const char *, char *);
                         int, char *);          int     (*roffhead)(void *);
         int     (*roffhead)(const struct md_args *);          int     (*rofftail)(void *);
         int     (*rofftail)(const struct md_args *);          int     (*roffin)(void *, int, int *, char **);
         int     (*roffin)(const struct md_args *, int, int *, char **);          int     (*roffdata)(void *, const char *);
         int     (*roffout)(const struct md_args *, int);          int     (*roffout)(void *, int);
         int     (*roffblkin)(const struct md_args *, int);          int     (*roffblkin)(void *, int);
         int     (*roffblkout)(const struct md_args *, int);          int     (*roffblkout)(void *, int);
         int     (*roffspecial)(const struct md_args *, int);          int     (*roffspecial)(void *, int);
 };  };
   
 __BEGIN_DECLS  __BEGIN_DECLS
Line 244  int     md_buf_putstring(struct md_mbuf *, const char 
Line 244  int     md_buf_putstring(struct md_mbuf *, const char 
   
 struct  rofftree;  struct  rofftree;
   
 struct  rofftree *roff_alloc(const struct md_args *,  struct  rofftree *roff_alloc(const struct roffcb *, void *);
                         struct md_mbuf *, const struct md_rbuf *,  
                         const struct roffcb *);  
 int               roff_engine(struct rofftree *, char *, size_t);  int               roff_engine(struct rofftree *, char *, size_t);
 int               roff_free(struct rofftree *, int);  int               roff_free(struct rofftree *, int);
   

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

CVSweb