aboutsummaryrefslogtreecommitdiffstats
path: root/src/n3.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-11 11:14:32 +0200
committerDavid Robillard <d@drobilla.net>2018-12-30 17:58:17 -0500
commit32c548683ed8ff8e585f069cd20ccddf54f00867 (patch)
treea78b62b9ac23e69d8380305531a1a054ab646a36 /src/n3.c
parent520f208db173a103b37dbe0d67c2e29a684edb82 (diff)
downloadserd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.gz
serd-32c548683ed8ff8e585f069cd20ccddf54f00867.tar.bz2
serd-32c548683ed8ff8e585f069cd20ccddf54f00867.zip
Clean up includes and improve source file separation
Diffstat (limited to 'src/n3.c')
-rw-r--r--src/n3.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/n3.c b/src/n3.c
index 2b9340c9..2c62dc15 100644
--- a/src/n3.c
+++ b/src/n3.c
@@ -14,19 +14,21 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include "node.h"
+#include "reader.h"
#include "serd_internal.h"
+#include "string_utils.h"
+#include "uri_utils.h"
+
+#include "serd/serd.h"
#include <assert.h>
#include <ctype.h>
-#include <stdint.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include "reader.h"
-#include "string_utils.h"
-#include "uri_utils.h"
-
#define TRY_THROW(exp) if (!(exp)) goto except;
#define TRY_RET(exp) if (!(exp)) return 0;