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

Diff for /mandoc/Attic/private.h between version 1.55 and 1.57

version 1.55, 2009/01/05 16:11:14 version 1.57, 2009/01/07 15:53:00
Line 31  struct mdoc {
Line 31  struct mdoc {
         struct mdoc_cb    cb;          struct mdoc_cb    cb;
         void             *htab;          void             *htab;
         int               flags;          int               flags;
   #define MDOC_HALT        (1 << 0)
         enum mdoc_next    next;          enum mdoc_next    next;
         struct mdoc_node *last;          struct mdoc_node *last;
         struct mdoc_node *first;          struct mdoc_node *first;
Line 43  struct mdoc_macro {
Line 44  struct mdoc_macro {
         int     (*fp)(struct mdoc *, int, int, int *, char *);          int     (*fp)(struct mdoc *, int, int, int *, char *);
         int       flags;          int       flags;
 #define MDOC_CALLABLE   (1 << 0)  #define MDOC_CALLABLE   (1 << 0)
 #define MDOC_EXPLICIT   (1 << 1)  #define MDOC_PARSED     (1 << 1)
 #define MDOC_QUOTABLE   (1 << 2)  #define MDOC_EXPLICIT   (1 << 2)
 #define MDOC_PROLOGUE   (1 << 3)  #define MDOC_QUOTABLE   (1 << 3)
 #define MDOC_NESTED     (1 << 4)  #define MDOC_PROLOGUE   (1 << 4)
   #define MDOC_NESTED     (1 << 5)
 };  };
   
 extern  const struct mdoc_macro *const mdoc_macros;  extern  const struct mdoc_macro *const mdoc_macros;
Line 86  time_t    mdoc_atotime(const char *);
Line 88  time_t    mdoc_atotime(const char *);
   
 int               mdoc_valid_pre(struct mdoc *, int, int,  int               mdoc_valid_pre(struct mdoc *, int, int,
                         int, const struct mdoc_arg *);                          int, const struct mdoc_arg *);
 int               mdoc_valid_post(struct mdoc *, int, int);  int               mdoc_valid_post(struct mdoc *, int);
 int               mdoc_action(struct mdoc *, int, int);  int               mdoc_action(struct mdoc *, int);
   
 int               mdoc_argv(struct mdoc *, int,  int               mdoc_argv(struct mdoc *, int,
                         struct mdoc_arg *, int *, char *);                          struct mdoc_arg *, int *, char *);
Line 121  int    macro_scoped(MACRO_PROT_ARGS);
Line 123  int    macro_scoped(MACRO_PROT_ARGS);
 int               macro_close_explicit(MACRO_PROT_ARGS);  int               macro_close_explicit(MACRO_PROT_ARGS);
 int               macro_scoped_line(MACRO_PROT_ARGS);  int               macro_scoped_line(MACRO_PROT_ARGS);
 int               macro_prologue(MACRO_PROT_ARGS);  int               macro_prologue(MACRO_PROT_ARGS);
   int               macro_end(struct mdoc *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.57

CVSweb