summaryrefslogtreecommitdiff
path: root/src/core/document_type.c
blob: 211d6003076a8188786c8622c4afb63e4f205c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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>
 */

#include <dom/functypes.h>
#include <dom/core/document_type.h>
#include "utils/utils.h"

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

	return DOM_NOT_SUPPORTED_ERR;
}