📄 domcomment.h.svn-base
字号:
/* * libsgml -- SGML state machine parsing library. * * Copyright (c) 2002 Uninformed Research (http://www.uninformed.org) * All rights reserved. * * skape * mmiller@hick.org *//** * @defgroup DOMComment Comment * @ingroup DOMNode * * Comment node manipulation. * * @{ */#ifndef _LIBSGML_DOMCOMMENT_H#define _LIBSGML_DOMCOMMENT_H#include "DomNode.h"#ifdef __cplusplusextern "C" {#endif/** * @def DOM_COMMENT * * Defines a DOM_COMMENT as a DOM_NODE. This gives us "inheritance" in C. */#define DOM_COMMENT DOM_NODE/** * Creates a new DOM comment with the provided comment text. * * @param comment [in] The text value for the comment. * @return The constructed DOM comment node. */DOM_COMMENT *domCommentNew(const char *comment);/** * @} */#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -