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

Diff for /mandoc/libmdoc.h between version 1.17 and 1.31

version 1.17, 2009/07/12 20:30:35 version 1.31, 2010/03/31 07:13:53
Line 27  enum mdoc_next {
Line 27  enum mdoc_next {
 struct  mdoc {  struct  mdoc {
         void             *data;          void             *data;
         struct mdoc_cb    cb;          struct mdoc_cb    cb;
         void             *htab;  
         int               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. */
Line 43  struct mdoc {
Line 42  struct mdoc {
   
 enum    merr {  enum    merr {
         ETAILWS = 0,          ETAILWS = 0,
         ECOLEMPTY,  
         EARGVPARM,  
         EQUOTPARM,          EQUOTPARM,
         EQUOTTERM,          EQUOTTERM,
         EMALLOC,  
         EARGVAL,          EARGVAL,
         ENOCALL,  
         EBODYPROL,          EBODYPROL,
         EPROLBODY,          EPROLBODY,
         ETEXTPROL,          ETEXTPROL,
Line 90  enum merr {
Line 85  enum merr {
         ENOWIDTH,          ENOWIDTH,
         EUTSNAME,          EUTSNAME,
         EOBS,          EOBS,
         EMACPARM,  
         EIMPBRK,          EIMPBRK,
         EIGNE,          EIGNE,
         EOPEN,          EOPEN,
         EQUOTPHR,          EQUOTPHR,
         ENOCTX,          ENOCTX,
         ESPACE,          ELIB,
           EBADCHILD,
           ENOTYPE,
         MERRMAX          MERRMAX
 };  };
   
 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, int line, \  #define MACRO_PROT_ARGS struct mdoc *m, enum mdoct tok, \
                         int ppos, int *pos, char *buf                          int line, int ppos, int *pos, char *buf
   
 struct  mdoc_macro {  struct  mdoc_macro {
         int             (*fp)(MACRO_PROT_ARGS);          int             (*fp)(MACRO_PROT_ARGS);
Line 135  int    mdoc_macro(MACRO_PROT_ARGS);
Line 131  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 *);
 int               mdoc_elem_alloc(struct mdoc *, int, int,  int               mdoc_elem_alloc(struct mdoc *, int, int,
                         int, struct mdoc_arg *);                          enum mdoct, struct mdoc_arg *);
 int               mdoc_block_alloc(struct mdoc *, int, int,  int               mdoc_block_alloc(struct mdoc *, int, int,
                         int, struct mdoc_arg *);                          enum mdoct, struct mdoc_arg *);
 int               mdoc_head_alloc(struct mdoc *, int, int, int);  int               mdoc_head_alloc(struct mdoc *, int, int, enum mdoct);
 int               mdoc_tail_alloc(struct mdoc *, int, int, int);  int               mdoc_tail_alloc(struct mdoc *, int, int, enum mdoct);
 int               mdoc_body_alloc(struct mdoc *, int, int, int);  int               mdoc_body_alloc(struct mdoc *, int, int, enum mdoct);
 void              mdoc_node_free(struct mdoc_node *);  void              mdoc_node_free(struct mdoc_node *);
 void              mdoc_node_freelist(struct mdoc_node *);  void              mdoc_node_freelist(struct mdoc_node *);
 void             *mdoc_hash_alloc(void);  void              mdoc_hash_init(void);
 int               mdoc_hash_find(const void *, const char *);  enum mdoct        mdoc_hash_find(const char *);
 void              mdoc_hash_free(void *);  
 int               mdoc_iscdelim(char);  int               mdoc_iscdelim(char);
 int               mdoc_isdelim(const char *);  int               mdoc_isdelim(const char *);
 size_t            mdoc_isescape(const char *);  size_t            mdoc_isescape(const char *);
Line 154  time_t    mdoc_atotime(const char *);
Line 149  time_t    mdoc_atotime(const char *);
   
 size_t            mdoc_macro2len(int);  size_t            mdoc_macro2len(int);
 const char       *mdoc_a2att(const char *);  const char       *mdoc_a2att(const char *);
   const char       *mdoc_a2lib(const char *);
 const char       *mdoc_a2st(const char *);  const char       *mdoc_a2st(const char *);
 const char       *mdoc_a2arch(const char *);  const char       *mdoc_a2arch(const char *);
 const char       *mdoc_a2vol(const char *);  const char       *mdoc_a2vol(const char *);
Line 164  int    mdoc_valid_post(struct mdoc *);
Line 160  int    mdoc_valid_post(struct mdoc *);
 int               mdoc_action_pre(struct mdoc *,  int               mdoc_action_pre(struct mdoc *,
                         const struct mdoc_node *);                          const struct mdoc_node *);
 int               mdoc_action_post(struct mdoc *);  int               mdoc_action_post(struct mdoc *);
 int               mdoc_argv(struct mdoc *, int, int,  int               mdoc_argv(struct mdoc *, int, enum mdoct,
                         struct mdoc_arg **, int *, char *);                          struct mdoc_arg **, int *, char *);
 #define ARGV_ERROR      (-1)  #define ARGV_ERROR      (-1)
 #define ARGV_EOLN       (0)  #define ARGV_EOLN       (0)
Line 172  int    mdoc_argv(struct mdoc *, int, int,
Line 168  int    mdoc_argv(struct mdoc *, int, int,
 #define ARGV_WORD       (2)  #define ARGV_WORD       (2)
 void              mdoc_argv_free(struct mdoc_arg *);  void              mdoc_argv_free(struct mdoc_arg *);
 int               mdoc_args(struct mdoc *, int,  int               mdoc_args(struct mdoc *, int,
                           int *, char *, enum mdoct, char **);
   int               mdoc_zargs(struct mdoc *, int,
                         int *, char *, int, char **);                          int *, char *, int, char **);
   #define ARGS_DELIM      (1 << 1)        /* See args(). */
   #define ARGS_TABSEP     (1 << 2)        /* See args(). */
   #define ARGS_NOWARN     (1 << 3)        /* See args(). */
 #define ARGS_ERROR      (-1)  #define ARGS_ERROR      (-1)
 #define ARGS_EOLN       (0)  #define ARGS_EOLN       (0)
 #define ARGS_WORD       (1)  #define ARGS_WORD       (1)
 #define ARGS_PUNCT      (2)  #define ARGS_PUNCT      (2)
 #define ARGS_QWORD      (3)  #define ARGS_QWORD      (3)
 #define ARGS_PHRASE     (4)  #define ARGS_PHRASE     (4)
   
 int               mdoc_macroend(struct mdoc *);  int               mdoc_macroend(struct mdoc *);
   
 __END_DECLS  __END_DECLS

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

CVSweb