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

Diff for /mandoc/html.h between version 1.12 and 1.14

version 1.12, 2009/10/07 12:35:23 version 1.14, 2009/10/26 08:18:16
Line 62  enum htmlattr {
Line 62  enum htmlattr {
 };  };
   
 struct  tag {  struct  tag {
           struct tag       *next;
         enum htmltag      tag;          enum htmltag      tag;
         SLIST_ENTRY(tag)  entry;  
 };  };
   
 struct  ord {  struct  ord {
         int               pos;          struct ord       *next;
         const void       *cookie;          const void       *cookie;
         SLIST_ENTRY(ord)  entry;          int               pos;
 };  };
   
 SLIST_HEAD(tagq, tag);  struct tagq {
 SLIST_HEAD(ordq, ord);          struct tag       *head;
   };
   struct ordq {
           struct ord       *head;
   };
   
 struct  htmlpair {  struct  htmlpair {
         enum htmlattr     key;          enum htmlattr     key;
         char             *val;          const char       *val;
 };  };
   
 #define PAIR_CLASS_INIT(p, v) \  #define PAIR_CLASS_INIT(p, v) \

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.14

CVSweb