summaryrefslogtreecommitdiff
path: root/render/table.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/table.h')
-rw-r--r--render/table.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/render/table.h b/render/table.h
new file mode 100644
index 000000000..123ddfa84
--- /dev/null
+++ b/render/table.h
@@ -0,0 +1,22 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2005 James Bursa <bursa@users.sourceforge.net>
+ */
+
+/** \file
+ * Table processing and layout (interface).
+ */
+
+#ifndef _NETSURF_RENDER_TABLE_H_
+#define _NETSURF_RENDER_TABLE_H_
+
+#include <stdbool.h>
+
+struct box;
+
+bool table_calculate_column_types(struct box *table);
+void table_collapse_borders(struct box *table);
+
+#endif