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

Diff for /mandoc/Attic/private.h between version 1.29 and 1.33

version 1.29, 2008/12/04 19:31:57 version 1.33, 2008/12/08 12:46:28
Line 244  struct md_mbuf {
Line 244  struct md_mbuf {
 extern  const char *const *toknames;  extern  const char *const *toknames;
 extern  const char *const *tokargnames;  extern  const char *const *tokargnames;
   
 enum    roffmsg { ROFF_WARN, ROFF_ERROR };  enum    roffmsg {
           ROFF_WARN,
           ROFF_ERROR
   };
   
   enum    roffmsec {
           ROFF_MSEC_1,
           ROFF_MSEC_2,
           ROFF_MSEC_3,
           ROFF_MSEC_3p,
           ROFF_MSEC_4,
           ROFF_MSEC_5,
           ROFF_MSEC_6,
           ROFF_MSEC_7,
           ROFF_MSEC_8,
           ROFF_MSEC_9,
           ROFF_MSEC_UNASS,
           ROFF_MSEC_DRAFT,
           ROFF_MSEC_PAPER,
           ROFF_MSEC_MAX
   };
   
 struct  roffcb {  struct  roffcb {
         void    (*roffmsg)(void *, enum roffmsg,          void    (*roffmsg)(void *, enum roffmsg,
                         const char *, const char *, char *);  
         int     (*roffhead)(void *, const struct tm *, const char *,  
                         const char *, const char *, const char *);                          const char *, const char *, const char *);
           int     (*roffhead)(void *, const struct tm *, const char *,
                           const char *, enum roffmsec, const char *);
         int     (*rofftail)(void *);          int     (*rofftail)(void *);
         int     (*roffdata)(void *, int, const char *, char *);          int     (*roffdata)(void *, int, const char *, const char *);
         int     (*roffin)(void *, int, int *, char **);          int     (*roffin)(void *, int, int *, const char **);
         int     (*roffout)(void *, int);          int     (*roffout)(void *, int);
         int     (*roffblkin)(void *, int, int *, char **);          int     (*roffblkin)(void *, int, int *, const char **);
         int     (*roffblkout)(void *, int);          int     (*roffblkout)(void *, int);
         int     (*roffblkheadin)(void *, int, int *, char **);          int     (*roffblkheadin)(void *, int, int *, const char **);
         int     (*roffblkheadout)(void *, int);          int     (*roffblkheadout)(void *, int);
         int     (*roffblkbodyin)(void *, int, int *, char **);          int     (*roffblkbodyin)(void *, int, int *, const char **);
         int     (*roffblkbodyout)(void *, int);          int     (*roffblkbodyout)(void *, int);
         int     (*roffspecial)(void *, int, int *, char **, char **);          int     (*roffspecial)(void *, int, const char *,
                           const int *, const char **, const char **);
 };  };
   
 struct  rofftree;  struct  rofftree;

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.33

CVSweb