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

Diff for /mandoc/html.h between version 1.6 and 1.10

version 1.6, 2009/09/21 14:56:56 version 1.10, 2009/10/03 16:36:06
Line 56  enum htmlattr {
Line 56  enum htmlattr {
         ATTR_STYLE,          ATTR_STYLE,
         ATTR_WIDTH,          ATTR_WIDTH,
         ATTR_VALIGN,          ATTR_VALIGN,
           ATTR_TARGET,
         ATTR_MAX          ATTR_MAX
 };  };
   
Line 82  struct html {
Line 83  struct html {
         int               flags;          int               flags;
 #define HTML_NOSPACE     (1 << 0)  #define HTML_NOSPACE     (1 << 0)
 #define HTML_NEWLINE     (1 << 1)  #define HTML_NEWLINE     (1 << 1)
   #define HTML_IGNDELIM    (1 << 2)
         struct tagq       tags;          struct tagq       tags;
         struct ordq       ords;          struct ordq       ords;
         void             *symtab;          void             *symtab;
         char             *base;          char             *base;
           char             *base_man;
           char             *base_includes;
         char             *style;          char             *style;
           char              buf[BUFSIZ];
           size_t            buflen;
 };  };
   
 void              print_gen_doctype(struct html *);  void              print_gen_doctype(struct html *);
Line 96  struct tag  *print_otag(struct html *, enum htmltag, 
Line 102  struct tag  *print_otag(struct html *, enum htmltag, 
 void              print_tagq(struct html *, const struct tag *);  void              print_tagq(struct html *, const struct tag *);
 void              print_stagq(struct html *, const struct tag *);  void              print_stagq(struct html *, const struct tag *);
 void              print_text(struct html *, const char *);  void              print_text(struct html *, const char *);
   
   void              buffmt_man(struct html *, const char *, const char *);
   void              buffmt_includes(struct html *, const char *);
   void              buffmt(struct html *, const char *, ...);
   void              bufcat(struct html *, const char *);
   void              bufncat(struct html *, const char *, size_t);
   void              bufinit(struct html *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.10

CVSweb