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

Diff for /mandoc/Attic/private.h between version 1.2 and 1.42

version 1.2, 2008/11/23 22:30:53 version 1.42, 2008/12/15 03:13:01
Line 19 
Line 19 
 #ifndef PRIVATE_H  #ifndef PRIVATE_H
 #define PRIVATE_H  #define PRIVATE_H
   
 struct  md_rbuf {  #include "mdoc.h"
         int              fd;  
         char            *name;  struct  mdoc {
         char            *buf;          void             *data;
         size_t           bufsz;          struct mdoc_cb    cb;
         size_t           line;          void             *htab;
           struct mdoc_node *last;
           struct mdoc_node *first;
   
           enum mdoc_sec     sec_lastn;
           enum mdoc_sec     sec_last;
 };  };
   
 struct  md_mbuf {  struct  mdoc_macro {
         int              fd;          int     (*fp)(struct mdoc *, int, int, int *, char *);
         char            *name;          int       flags;
         char            *buf;  #define MDOC_CALLABLE   (1 << 0)
         size_t           bufsz;  #define MDOC_EXPLICIT   (1 << 1)
         size_t           pos;  
 };  };
   
   extern  const struct mdoc_macro *const mdoc_macros;
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 typedef int     (*md_init)(const struct md_args *, struct md_mbuf *,  int               mdoc_err(struct mdoc *, int, int, enum mdoc_err);
                         const struct md_rbuf *, void **);  int               mdoc_warn(struct mdoc *, int, int, enum mdoc_warn);
 typedef int     (*md_exit)(const struct md_args *, struct md_mbuf *,  void              mdoc_msg(struct mdoc *, int, const char *, ...);
                         const struct md_rbuf *, int, void *);  int               mdoc_macro(struct mdoc *, int, int, int *, char *);
 typedef int     (*md_line)(const struct md_args *,  int               mdoc_find(const struct mdoc *, const char *);
                         struct md_mbuf *, const struct md_rbuf *,  void              mdoc_word_alloc(struct mdoc *, int, const char *);
                         const char *, size_t, void *);  void              mdoc_elem_alloc(struct mdoc *, int, int,
                           size_t, const struct mdoc_arg *,
 int               md_line_html4_strict(const struct md_args *,                          size_t, const char **);
                         struct md_mbuf *, const struct md_rbuf *,  void              mdoc_block_alloc(struct mdoc *, int, int,
                         const char *, size_t, void *);                          size_t, const struct mdoc_arg *);
 int               md_init_html4_strict(const struct md_args *,  void              mdoc_head_alloc(struct mdoc *,
                         struct md_mbuf *, const struct md_rbuf *,                          int, int, size_t, const char **);
                         void **);  void              mdoc_body_alloc(struct mdoc *, int, int);
 int               md_exit_html4_strict(const struct md_args *,  void              mdoc_node_free(struct mdoc_node *);
                         struct md_mbuf *, const struct md_rbuf *,  void              mdoc_sibling(struct mdoc *, int, struct mdoc_node **,
                         int, void *);                          struct mdoc_node **, struct mdoc_node *);
   void             *mdoc_hash_alloc(void);
 int               md_line_dummy(const struct md_args *,  int               mdoc_hash_find(const void *, const char *);
                         struct md_mbuf *, const struct md_rbuf *,  void              mdoc_hash_free(void *);
                         const char *, size_t, void *);  int               mdoc_isdelim(const char *);
   
 int               md_buf_puts(struct md_mbuf *, const char *, size_t);  
 int               md_buf_putchar(struct md_mbuf *, char);  
 int               md_buf_putstring(struct md_mbuf *, const char *);  
   
 __END_DECLS  __END_DECLS
   

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

CVSweb