summaryrefslogtreecommitdiff
path: root/src/cos_parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cos_parse.h')
-rw-r--r--src/cos_parse.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cos_parse.h b/src/cos_parse.h
index adfb835..0bca79f 100644
--- a/src/cos_parse.h
+++ b/src/cos_parse.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of libnspdf.
+ *
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ */
+
+/**
+ * \file
+ * NetSurf PDF library parsing cos objects from file
+ */
+
+#ifndef NSPDF__COS_PARSE_H_
+#define NSPDF__COS_PARSE_H_
+
struct nspdf_doc;
struct cos_object;
@@ -8,3 +25,4 @@ struct cos_object;
*/
nspdferror cos_parse_object(struct nspdf_doc *doc, uint64_t *offset_out, struct cos_object **cosobj_out);
+#endif