00001 /* 00002 * libsgml -- SGML state machine parsing library. 00003 * 00004 * Copyright (c) 2002 Uninformed Research (http://www.uninformed.org) 00005 * All rights reserved. 00006 * 00007 * skape 00008 * [email protected] 00009 */ 00018 #ifndef _LIBSGML_DOMTEXT_H 00019 #define _LIBSGML_DOMTEXT_H 00020 00021 #include "DomNode.h" 00022 00028 #define DOM_TEXT DOM_NODE 00029 00036 DOM_TEXT *domTextNew(const char *text); 00037 00042 #endif