summaryrefslogtreecommitdiff
path: root/src/core/cdatasection.h
blob: 740c7d7181c74d4e46800d0efc5bae1121e233d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef dom_internal_core_cdatasection_h_
#define dom_internal_core_cdatasection_h_

#include <dom/core/exceptions.h>

struct dom_cdata_section;
struct dom_document;
struct dom_string;

dom_exception dom_cdata_section_create(struct dom_document *doc,
		struct dom_string *name, struct dom_string *value,
		struct dom_cdata_section **result);

void dom_cdata_section_destroy(struct dom_document *doc,
		struct dom_cdata_section *cdata);

#endif