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

Diff for /mandoc/libmdoc.h between version 1.90 and 1.93

version 1.90, 2014/11/28 01:05:43 version 1.93, 2014/11/28 18:36:35
Line 56  struct mdoc {
Line 56  struct mdoc {
                         char *buf                          char *buf
   
 struct  mdoc_macro {  struct  mdoc_macro {
         int             (*fp)(MACRO_PROT_ARGS);          void            (*fp)(MACRO_PROT_ARGS);
         int               flags;          int               flags;
 #define MDOC_CALLABLE    (1 << 0)  #define MDOC_CALLABLE    (1 << 0)
 #define MDOC_PARSED      (1 << 1)  #define MDOC_PARSED      (1 << 1)
Line 105  extern const struct mdoc_macro *const mdoc_macros;
Line 105  extern const struct mdoc_macro *const mdoc_macros;
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 int               mdoc_macro(MACRO_PROT_ARGS);  void              mdoc_macro(MACRO_PROT_ARGS);
 int               mdoc_word_alloc(struct mdoc *,  void              mdoc_word_alloc(struct mdoc *, int, int, const char *);
                         int, int, const char *);  
 void              mdoc_word_append(struct mdoc *, const char *);  void              mdoc_word_append(struct mdoc *, const char *);
 int               mdoc_elem_alloc(struct mdoc *, int, int,  void              mdoc_elem_alloc(struct mdoc *, int, int,
                         enum mdoct, struct mdoc_arg *);                          enum mdoct, struct mdoc_arg *);
 int               mdoc_block_alloc(struct mdoc *, int, int,  struct mdoc_node *mdoc_block_alloc(struct mdoc *, int, int,
                         enum mdoct, struct mdoc_arg *);                          enum mdoct, struct mdoc_arg *);
 int               mdoc_head_alloc(struct mdoc *, int, int, enum mdoct);  struct mdoc_node *mdoc_head_alloc(struct mdoc *, int, int, enum mdoct);
 int               mdoc_tail_alloc(struct mdoc *, int, int, enum mdoct);  void              mdoc_tail_alloc(struct mdoc *, int, int, enum mdoct);
 int               mdoc_body_alloc(struct mdoc *, int, int, enum mdoct);  struct mdoc_node *mdoc_body_alloc(struct mdoc *, int, int, enum mdoct);
 int               mdoc_endbody_alloc(struct mdoc *, int, int, enum mdoct,  void              mdoc_endbody_alloc(struct mdoc *, int, int, enum mdoct,
                         struct mdoc_node *, enum mdoc_endbody);                          struct mdoc_node *, enum mdoc_endbody);
 void              mdoc_node_delete(struct mdoc *, struct mdoc_node *);  void              mdoc_node_delete(struct mdoc *, struct mdoc_node *);
 int               mdoc_node_relink(struct mdoc *, struct mdoc_node *);  void              mdoc_node_relink(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 *);
 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 *);
 const char       *mdoc_a2arch(const char *);  const char       *mdoc_a2arch(const char *);
 const char       *mdoc_a2vol(const char *);  
 void              mdoc_valid_pre(struct mdoc *, struct mdoc_node *);  void              mdoc_valid_pre(struct mdoc *, struct mdoc_node *);
 void              mdoc_valid_post(struct mdoc *);  void              mdoc_valid_post(struct mdoc *);
 enum margverr     mdoc_argv(struct mdoc *, int, enum mdoct,  enum margverr     mdoc_argv(struct mdoc *, int, enum mdoct,
Line 136  enum margserr   mdoc_args(struct mdoc *, int,
Line 134  enum margserr   mdoc_args(struct mdoc *, int,
                         int *, char *, enum mdoct, char **);                          int *, char *, enum mdoct, char **);
 enum margserr     mdoc_zargs(struct mdoc *, int,  enum margserr     mdoc_zargs(struct mdoc *, int,
                         int *, char *, char **);                          int *, char *, char **);
 int               mdoc_macroend(struct mdoc *);  void              mdoc_macroend(struct mdoc *);
 enum mdelim       mdoc_isdelim(const char *);  enum mdelim       mdoc_isdelim(const char *);
   
 __END_DECLS  __END_DECLS

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.93

CVSweb