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

Diff for /mandoc/man.h between version 1.42 and 1.45

version 1.42, 2010/07/31 23:52:58 version 1.45, 2010/10/04 07:01:02
Line 17 
Line 17 
 #ifndef MAN_H  #ifndef MAN_H
 #define MAN_H  #define MAN_H
   
 #include <time.h>  /*
    * What follows is a list of ALL possible macros.
    */
 enum    mant {  enum    mant {
         MAN_br = 0,          MAN_br = 0,
         MAN_TH,          MAN_TH,
Line 60  enum mant {
Line 61  enum mant {
         MAN_MAX          MAN_MAX
 };  };
   
   /*
    * Type of a syntax node.
    */
 enum    man_type {  enum    man_type {
         MAN_TEXT,          MAN_TEXT,
         MAN_ELEM,          MAN_ELEM,
Line 69  enum man_type {
Line 73  enum man_type {
         MAN_BODY          MAN_BODY
 };  };
   
   /*
    * Information from prologue.
    */
 struct  man_meta {  struct  man_meta {
         char            *msec;          char            *msec; /* `TH' section (1, 3p, etc.) */
         time_t           date;          time_t           date; /* `TH' normalised date */
         char            *rawdate;          char            *rawdate; /* raw `TH' 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) */
 };  };
   
   /*
    * Single node in tree-linked AST.
    */
 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;
         enum mant        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_ACTED       (1 << 1) /* has been acted upon */
 #define MAN_EOS         (1 << 2)  #define MAN_EOS         (1 << 2) /* at sentence boundary */
         enum man_type    type;          enum man_type    type; /* AST node type */
         char            *string;          char            *string; /* TEXT node argument */
         struct man_node *head;          struct man_node *head; /* BLOCK node HEAD ptr */
         struct man_node *body;          struct man_node *body; /* BLOCK node BODY ptr */
 };  };
   
 #define MAN_IGN_MACRO    (1 << 0)  /*
 #define MAN_IGN_ESCAPE   (1 << 2)   * Names of macros.  Index is enum mant.  Indexing into this returns
    * the normalised name, e.g., man_macronames[MAN_SH] -> "SH".
    */
 extern  const char *const *man_macronames;  extern  const char *const *man_macronames;
   
 __BEGIN_DECLS  __BEGIN_DECLS
Line 107  __BEGIN_DECLS
Line 118  __BEGIN_DECLS
 struct  man;  struct  man;
   
 void              man_free(struct man *);  void              man_free(struct man *);
 struct  man      *man_alloc(struct regset *, void *, int, mandocmsg);  struct  man      *man_alloc(struct regset *, void *, mandocmsg);
 void              man_reset(struct man *);  void              man_reset(struct man *);
 int               man_parseln(struct man *, int, char *, int);  int               man_parseln(struct man *, int, char *, int);
 int               man_endparse(struct man *);  int               man_endparse(struct man *);

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.45

CVSweb