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

Diff for /mandoc/man.h between version 1.25 and 1.39

version 1.25, 2010/03/23 21:50:43 version 1.39, 2010/06/27 15:52:41
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_MAX,          MAN_AT,
           MAN_MAX
 };  };
   
 enum    man_type {  enum    man_type {
Line 68  enum man_type {
Line 69  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 87  struct man_node {
Line 89  struct man_node {
         int              flags;          int              flags;
 #define MAN_VALID       (1 << 0)  #define MAN_VALID       (1 << 0)
 #define MAN_ACTED       (1 << 1)  #define MAN_ACTED       (1 << 1)
   #define MAN_EOS         (1 << 2)
         enum man_type    type;          enum man_type    type;
         char            *string;          char            *string;
         struct man_node *head;          struct man_node *head;
Line 94  struct man_node {
Line 97  struct man_node {
 };  };
   
 #define MAN_IGN_MACRO    (1 << 0)  #define MAN_IGN_MACRO    (1 << 0)
 #define MAN_IGN_CHARS    (1 << 1)  
 #define MAN_IGN_ESCAPE   (1 << 2)  #define MAN_IGN_ESCAPE   (1 << 2)
   
 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(const 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.25  
changed lines
  Added in v.1.39

CVSweb