summaryrefslogtreecommitdiff
path: root/src/node.c
blob: 233e6c492a50372f24d79e041cff6601d2967f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 {
};