summaryrefslogtreecommitdiff
path: root/src/cos_parse.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-01-08 22:10:32 +0000
committerVincent Sanders <vince@kyllikki.org>2018-01-08 22:10:32 +0000
commit615323e574ffcecd8525711c39beffcac4156624 (patch)
tree8d1883b3d789def986a2cce25b97991ac2940985 /src/cos_parse.h
parent119b565de393fdd797e1a3c4f629c936092e9091 (diff)
downloadlibnspdf-615323e574ffcecd8525711c39beffcac4156624.tar.gz
libnspdf-615323e574ffcecd8525711c39beffcac4156624.tar.bz2
fix header guards and copyright notices
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