From cc802a810a035a369db520aaa7cba82e0b3686a2 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 28 Nov 2008 11:21:12 +0000 Subject: Initial pushing to mbuf. --- libmdocml.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libmdocml.h') diff --git a/libmdocml.h b/libmdocml.h index 52bd3324..c2576146 100644 --- a/libmdocml.h +++ b/libmdocml.h @@ -21,7 +21,7 @@ #include -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. */ }; -- cgit