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

Diff for /mandoc/Attic/libmdocml.h between version 1.8 and 1.11

version 1.8, 2008/11/27 17:27:50 version 1.11, 2008/12/03 14:39:59
Line 21 
Line 21 
   
 #include <sys/types.h>  #include <sys/types.h>
   
 struct  md_params_dummy {  struct  md_params_xml {
         int              dummy;          int              dummy;
 };  };
   
 struct  md_params_html4_strict {  struct  md_params_html {
         int              dummy;          int              dummy;
 };  };
   
 union   md_params {  union   md_params {
         struct md_params_dummy dummy;          struct md_params_xml xml;
         struct md_params_html4_strict html4_strict;          struct md_params_html html;
 };  };
   
 enum    md_type {  enum    md_type {
         MD_DUMMY,               /* Dummy type echoes input. */          MD_XML,                 /* XML. */
         MD_HTML4_STRICT         /* HTML4.01-strict. */          MD_HTML                 /* HTML4.01-strict. */
 };  };
   
 struct  md_args {  struct  md_args {

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.11

CVSweb