summaryrefslogtreecommitdiff
path: root/utils/domutils.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-11-07 23:36:22 +0100
committerOle Loots <ole@monochrom.net>2012-11-07 23:38:04 +0100
commit9482bb464a157265a555dfa38fcf2dc37ade12fd (patch)
tree8af826c90d8e0b53ea9cb0421bb1466172dec99b /utils/domutils.h
parent5242cd00a4b9ddc6364e107519f1e674e716bc77 (diff)
parent882fd4f5c5eead48d1f056596a6e66329bd9c144 (diff)
downloadnetsurf-9482bb464a157265a555dfa38fcf2dc37ade12fd.tar.gz
netsurf-9482bb464a157265a555dfa38fcf2dc37ade12fd.tar.bz2
Merge branch 'master' of git://git.netsurf-browser.org/netsurf
Diffstat (limited to 'utils/domutils.h')
-rw-r--r--utils/domutils.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/domutils.h b/utils/domutils.h
new file mode 100644
index 000000000..ecdf2bc4a
--- /dev/null
+++ b/utils/domutils.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _NETSURF_UTILS_DOMUTILS_H_
+#define _NETSURF_UTILS_DOMUTILS_H_
+
+dom_node *find_first_named_dom_element(dom_node *parent, lwc_string *element_name);
+
+#endif