[BACK]Return to html.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/html.h between version 1.2 and 1.3

version 1.2, 2009/10/27 21:40:07 version 1.3, 2009/12/22 23:58:00
Line 58 
Line 58 
         ATTR_VALIGN,          ATTR_VALIGN,
         ATTR_TARGET,          ATTR_TARGET,
         ATTR_ID,          ATTR_ID,
           ATTR_SUMMARY,
         ATTR_MAX          ATTR_MAX
 };  };
   
Line 93 
Line 94 
 #define PAIR_STYLE_INIT(p, h) \  #define PAIR_STYLE_INIT(p, h) \
         do { (p)->key = ATTR_STYLE; \          do { (p)->key = ATTR_STYLE; \
         (p)->val = (h)->buf; } while (/* CONSTCOND */ 0)          (p)->val = (h)->buf; } while (/* CONSTCOND */ 0)
   #define PAIR_SUMMARY_INIT(p, v) \
           do { (p)->key = ATTR_SUMMARY; \
           (p)->val = (v); } while (/* CONSTCOND */ 0)
   
 struct  html {  struct  html {
         int               flags;          int               flags;
Line 131 
Line 135 
                         const char *, const char *);                          const char *, const char *);
 void              bufncat(struct html *, const char *, size_t);  void              bufncat(struct html *, const char *, size_t);
 void              bufinit(struct html *);  void              bufinit(struct html *);
   
   void              html_idcat(char *, const char *, int);
   
 __END_DECLS  __END_DECLS
   

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