summaryrefslogtreecommitdiff
path: root/include/dom/core/document_type.h
blob: bb981a35cf8c91f24ee98467605ceaf6d5ab715d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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_core_document_type_h_
#define dom_core_document_type_h_

#include <stdbool.h>

#include <dom/core/exceptions.h>

struct dom_string;
struct dom_document_type;

dom_exception dom_document_type_get_name(struct dom_document_type *docType,
		struct dom_string **result);

#endif