diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-28 11:21:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-28 11:21:12 +0000 |
commit | cc802a810a035a369db520aaa7cba82e0b3686a2 (patch) | |
tree | 0ba2827efb08e2d5cc8759b6c41cd05aab59ff52 /libmdocml.h | |
parent | 251cb31839ca20218450f57218e4d7935e6e0652 (diff) | |
download | mandoc-cc802a810a035a369db520aaa7cba82e0b3686a2.tar.gz |
Initial pushing to mbuf.
Diffstat (limited to 'libmdocml.h')
-rw-r--r-- | libmdocml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmdocml.h b/libmdocml.h index 52bd3324..c2576146 100644 --- a/libmdocml.h +++ b/libmdocml.h @@ -21,7 +21,7 @@ #include <sys/types.h> -struct md_params_dummy { +struct md_params_valid { int dummy; }; @@ -30,12 +30,12 @@ struct md_params_html4_strict { }; union md_params { - struct md_params_dummy dummy; + struct md_params_valid valid; struct md_params_html4_strict html4_strict; }; enum md_type { - MD_DUMMY, /* Dummy type echoes input. */ + MD_VALID, /* Validate input only. */ MD_HTML4_STRICT /* HTML4.01-strict. */ }; |