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

Diff for /mandoc/man.h between version 1.29 and 1.41

version 1.29, 2010/05/12 16:46:28 version 1.41, 2010/07/22 23:03:15
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 55  enum mant {
Line 55  enum mant {
         MAN_Sp,          MAN_Sp,
         MAN_Vb,          MAN_Vb,
         MAN_Ve,          MAN_Ve,
         MAN_de,          MAN_AT,
         MAN_dei,          MAN_in,
         MAN_am,  
         MAN_ami,  
         MAN_ig,  
         MAN_dot,  
         MAN_MAX          MAN_MAX
 };  };
   
Line 74  enum man_type {
Line 70  enum man_type {
 };  };
   
 struct  man_meta {  struct  man_meta {
         int              msec;          char            *msec;
         time_t           date;          time_t           date;
           char            *rawdate;
         char            *vol;          char            *vol;
         char            *title;          char            *title;
         char            *source;          char            *source;
Line 105  struct man_node {
Line 102  struct man_node {
   
 extern  const char *const *man_macronames;  extern  const char *const *man_macronames;
   
 struct  man_cb {  
         int     (*man_warn)(void *, int, int, const char *);  
         int     (*man_err)(void *, int, int, const char *);  
 };  
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 struct  man;  struct  man;
   
 void              man_free(struct man *);  void              man_free(struct man *);
 struct  man      *man_alloc(void *, int, const struct man_cb *);  struct  man      *man_alloc(struct regset *, void *, int, mandocmsg);
 void              man_reset(struct man *);  void              man_reset(struct man *);
 int               man_parseln(struct man *, int, char *buf);  int               man_parseln(struct man *, int, char *, int);
 int               man_endparse(struct man *);  int               man_endparse(struct man *);
   
 const struct man_node *man_node(const struct man *);  const struct man_node *man_node(const struct man *);

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

CVSweb