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

Diff for /mandoc/libmdoc.h between version 1.61 and 1.69

version 1.61, 2010/07/13 23:53:20 version 1.69, 2011/03/20 16:02:05
Line 25  enum mdoc_next {
Line 25  enum mdoc_next {
 };  };
   
 struct  mdoc {  struct  mdoc {
         void             *data; /* private application data */          struct mparse    *parse; /* parse pointer */
         mandocmsg         msg; /* message callback */          int               flags; /* parse flags */
         int               flags;  
 #define MDOC_HALT        (1 << 0) /* error in parse: halt */  #define MDOC_HALT        (1 << 0) /* error in parse: halt */
 #define MDOC_LITERAL     (1 << 1) /* in a literal scope */  #define MDOC_LITERAL     (1 << 1) /* in a literal scope */
 #define MDOC_PBODY       (1 << 2) /* in the document body */  #define MDOC_PBODY       (1 << 2) /* in the document body */
Line 36  struct mdoc {
Line 35  struct mdoc {
 #define MDOC_PPHRASE     (1 << 5) /* within a partial phrase */  #define MDOC_PPHRASE     (1 << 5) /* within a partial phrase */
 #define MDOC_FREECOL     (1 << 6) /* `It' invocation should close */  #define MDOC_FREECOL     (1 << 6) /* `It' invocation should close */
 #define MDOC_SYNOPSIS    (1 << 7) /* SYNOPSIS-style formatting */  #define MDOC_SYNOPSIS    (1 << 7) /* SYNOPSIS-style formatting */
         int               pflags;  
         enum mdoc_next    next; /* where to put the next node */          enum mdoc_next    next; /* where to put the next node */
         struct mdoc_node *last; /* the last node parsed */          struct mdoc_node *last; /* the last node parsed */
         struct mdoc_node *first; /* the first node parsed */          struct mdoc_node *first; /* the first node parsed */
Line 82  enum margverr {
Line 80  enum margverr {
         ARGV_WORD          ARGV_WORD
 };  };
   
 enum    mdelim {  
         DELIM_NONE = 0,  
         DELIM_OPEN,  
         DELIM_MIDDLE,  
         DELIM_CLOSE  
 };  
   
 extern  const struct mdoc_macro *const mdoc_macros;  extern  const struct mdoc_macro *const mdoc_macros;
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 #define           mdoc_pmsg(m, l, p, t) \  #define           mdoc_pmsg(m, l, p, t) \
                   (*(m)->msg)((t), (m)->data, (l), (p), NULL)                    mandoc_msg((t), (m)->parse, (l), (p), NULL)
 #define           mdoc_nmsg(m, n, t) \  #define           mdoc_nmsg(m, n, t) \
                   (*(m)->msg)((t), (m)->data, (n)->line, (n)->pos, NULL)                    mandoc_msg((t), (m)->parse, (n)->line, (n)->pos, NULL)
 int               mdoc_vmsg(struct mdoc *, enum mandocerr,  
                         int, int, const char *, ...);  
 int               mdoc_macro(MACRO_PROT_ARGS);  int               mdoc_macro(MACRO_PROT_ARGS);
 int               mdoc_word_alloc(struct mdoc *,  int               mdoc_word_alloc(struct mdoc *,
                         int, int, const char *);                          int, int, const char *);
Line 115  int    mdoc_endbody_alloc(struct mdoc *m, int line, in
Line 104  int    mdoc_endbody_alloc(struct mdoc *m, int line, in
 void              mdoc_node_delete(struct mdoc *, struct mdoc_node *);  void              mdoc_node_delete(struct mdoc *, struct mdoc_node *);
 void              mdoc_hash_init(void);  void              mdoc_hash_init(void);
 enum mdoct        mdoc_hash_find(const char *);  enum mdoct        mdoc_hash_find(const char *);
 enum mdelim       mdoc_iscdelim(char);  
 enum mdelim       mdoc_isdelim(const char *);  
 size_t            mdoc_isescape(const char *);  
 enum    mdoc_sec  mdoc_str2sec(const char *);  
 time_t            mdoc_atotime(const char *);  
 size_t            mdoc_macro2len(enum mdoct);  
 const char       *mdoc_a2att(const char *);  const char       *mdoc_a2att(const char *);
 const char       *mdoc_a2lib(const char *);  const char       *mdoc_a2lib(const char *);
 const char       *mdoc_a2st(const char *);  const char       *mdoc_a2st(const char *);
Line 129  const char  *mdoc_a2vol(const char *);
Line 112  const char  *mdoc_a2vol(const char *);
 const char       *mdoc_a2msec(const char *);  const char       *mdoc_a2msec(const char *);
 int               mdoc_valid_pre(struct mdoc *, struct mdoc_node *);  int               mdoc_valid_pre(struct mdoc *, struct mdoc_node *);
 int               mdoc_valid_post(struct mdoc *);  int               mdoc_valid_post(struct mdoc *);
 int               mdoc_action_pre(struct mdoc *,  
                         struct mdoc_node *);  
 int               mdoc_action_post(struct mdoc *);  
 enum margverr     mdoc_argv(struct mdoc *, int, enum mdoct,  enum margverr     mdoc_argv(struct mdoc *, int, enum mdoct,
                         struct mdoc_arg **, int *, char *);                          struct mdoc_arg **, int *, char *);
 void              mdoc_argv_free(struct mdoc_arg *);  void              mdoc_argv_free(struct mdoc_arg *);

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.69

CVSweb