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

Diff for /mandoc/man.h between version 1.17 and 1.70

version 1.17, 2009/08/13 11:45:29 version 1.70, 2015/04/02 21:36:49
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * 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 14 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifndef MAN_H  
 #define MAN_H  
   
 #include <time.h>  enum    mant {
           MAN_br = 0,
 #define MAN_br           0          MAN_TH,
 #define MAN_TH           1          MAN_SH,
 #define MAN_SH           2          MAN_SS,
 #define MAN_SS           3          MAN_TP,
 #define MAN_TP           4          MAN_LP,
 #define MAN_LP           5          MAN_PP,
 #define MAN_PP           6          MAN_P,
 #define MAN_P            7          MAN_IP,
 #define MAN_IP           8          MAN_HP,
 #define MAN_HP           9          MAN_SM,
 #define MAN_SM           10          MAN_SB,
 #define MAN_SB           11          MAN_BI,
 #define MAN_BI           12          MAN_IB,
 #define MAN_IB           13          MAN_BR,
 #define MAN_BR           14          MAN_RB,
 #define MAN_RB           15          MAN_R,
 #define MAN_R            16          MAN_B,
 #define MAN_B            17          MAN_I,
 #define MAN_I            18          MAN_IR,
 #define MAN_IR           19          MAN_RI,
 #define MAN_RI           20          MAN_sp,
 #define MAN_na           21          MAN_nf,
 #define MAN_i            22          MAN_fi,
 #define MAN_sp           23          MAN_RE,
 #define MAN_nf           24          MAN_RS,
 #define MAN_fi           25          MAN_DT,
 #define MAN_r            26          MAN_UC,
 #define MAN_MAX          27          MAN_PD,
           MAN_AT,
 enum    man_type {          MAN_in,
         MAN_TEXT,          MAN_ft,
         MAN_ELEM,          MAN_OP,
         MAN_ROOT,          MAN_EX,
         MAN_BLOCK,          MAN_EE,
         MAN_HEAD,          MAN_UR,
         MAN_BODY          MAN_UE,
           MAN_ll,
           MAN_MAX
 };  };
   
 struct  man_meta {  struct  man_meta {
         int              msec;          char            *msec; /* `TH' section (1, 3p, etc.) */
         time_t           date;          char            *date; /* `TH' normalised date */
         char            *vol;          char            *vol; /* `TH' volume */
         char            *title;          char            *title; /* `TH' title (e.g., FOO) */
         char            *source;          char            *source; /* `TH' source (e.g., GNU) */
           int              hasbody; /* document is not empty */
 };  };
   
 struct  man_node {  struct  man_node {
         struct man_node *parent;          struct man_node *parent; /* parent AST node */
         struct man_node *child;          struct man_node *child; /* first child AST node */
         struct man_node *next;          struct man_node *next; /* sibling AST node */
         struct man_node *prev;          struct man_node *prev; /* prior sibling AST node */
         int              nchild;          int              nchild; /* number children */
         int              line;          int              line;
         int              pos;          int              pos;
         int              tok;          enum mant        tok; /* tok or MAN__MAX if none */
         int              flags;          int              flags;
 #define MAN_VALID       (1 << 0)  #define MAN_VALID       (1 << 0) /* has been validated */
 #define MAN_ACTED       (1 << 1)  #define MAN_EOS         (1 << 2) /* at sentence boundary */
         enum man_type    type;  #define MAN_LINE        (1 << 3) /* first macro/text on line */
         char            *string;          enum roff_type   type; /* AST node type */
         struct man_node *head;          char            *string; /* TEXT node argument */
         struct man_node *body;          struct man_node *head; /* BLOCK node HEAD ptr */
           struct man_node *tail; /* BLOCK node TAIL ptr */
           struct man_node *body; /* BLOCK node BODY ptr */
           const struct tbl_span *span; /* TBL */
           const struct eqn *eqn; /* EQN */
           int              aux; /* decoded node data, type-dependent */
 };  };
   
 #define MAN_IGN_MACRO    (1 << 0)  /* Names of macros.  Index is enum mant. */
 #define MAN_IGN_CHARS    (1 << 1)  
 #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 *);  
 struct  man      *man_alloc(void *, int, const struct man_cb *);  
 int               man_reset(struct man *);  
 int               man_parseln(struct man *, int, char *buf);  
 int               man_endparse(struct man *);  
 int               man_valid_post(struct man *);  
   
 const struct man_node *man_node(const struct man *);  const struct man_node *man_node(const struct man *);
 const struct man_meta *man_meta(const struct man *);  const struct man_meta *man_meta(const struct man *);
   const struct mparse   *man_mparse(const struct man *);
   void man_deroff(char **, const struct man_node *);
   
 __END_DECLS  __END_DECLS
   
 #endif /*!MAN_H*/  

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.70

CVSweb