summaryrefslogtreecommitdiff
path: root/content/content_debug.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-18 23:04:16 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-18 23:04:16 +0100
commit392307bb1fdf4186f26300631fe3710d895cf7ce (patch)
tree5a55cf451925bb4b00addcc69942f0678a0ee33e /content/content_debug.h
parent34f6aa13234a618c3b1add75899af2ca1f6a08e9 (diff)
downloadnetsurf-392307bb1fdf4186f26300631fe3710d895cf7ce.tar.gz
netsurf-392307bb1fdf4186f26300631fe3710d895cf7ce.tar.bz2
reduce content header interdependancy
Diffstat (limited to 'content/content_debug.h')
-rw-r--r--content/content_debug.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/content/content_debug.h b/content/content_debug.h
new file mode 100644
index 000000000..b08f730b8
--- /dev/null
+++ b/content/content_debug.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright 2016 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/>.
+ */
+
+/**
+ * \file
+ * Interface to content handling debug.
+ */
+
+#ifndef _NETSURF_CONTENT_CONTENT_DEBUG_H_
+#define _NETSURF_CONTENT_CONTENT_DEBUG_H_
+
+#include <stdio.h>
+
+/**
+ * Dump debug information to file.
+ *
+ * \param h content handle to debug.
+ * \param f File to write output to.
+ * \param op Debug operation type.
+ */
+nserror content_debug_dump(struct hlcache_handle *h, FILE *f, enum content_debug op);
+
+#endif