summaryrefslogtreecommitdiff
path: root/src/node.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2018-08-15 16:06:24 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2018-09-28 17:01:50 +0100
commitfd5ccee08973a2a5ada67e87c8d76b8086cd6ec5 (patch)
tree56bc112ca16516f154aefb292706aaae1717acfd /src/node.c
parentaf02dd42e2e9adb341900dac10f96e684458dee6 (diff)
downloadlibnslayout-fd5ccee08973a2a5ada67e87c8d76b8086cd6ec5.tar.gz
libnslayout-fd5ccee08973a2a5ada67e87c8d76b8086cd6ec5.tar.bz2
WIP: Layout node stuff. Not a lot here.tlsa/layout-nodes
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/node.c b/src/node.c
new file mode 100644
index 0000000..233e6c4
--- /dev/null
+++ b/src/node.c
@@ -0,0 +1,25 @@
+/*
+ * This file is part of LibNSLayout
+ * Licensed under the ISC License, http://opensource.org/licenses/ISC
+ * Copyright 2015 Michael Drake <tlsa@netsurf-browser.org>
+ */
+
+/** \file src/node.c
+ * Layout node handling
+ */
+
+#include <assert.h>
+#include <stdlib.h>
+
+#include "libnslayout/nslayout.h"
+
+#include "layout.h"
+#include "util/util.h"
+#include "util/dom-str.h"
+
+
+/**
+ * The layout node object.
+ */
+struct nsl_node {
+};