summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cli.c2
-rw-r--r--src/cli.h2
-rw-r--r--src/compress.c2
-rw-r--r--src/compress.h2
-rw-r--r--src/crypto.c2
-rw-r--r--src/crypto.h2
-rw-r--r--src/encoding.c2
-rw-r--r--src/encoding.h2
-rw-r--r--src/header.c2
-rw-r--r--src/header.h2
-rw-r--r--src/io.c2
-rw-r--r--src/io.h2
-rw-r--r--src/main.c3
-rw-r--r--src/table.c2
-rw-r--r--src/table.h2
-rw-r--r--test/test_cli.c2
-rw-r--r--test/test_cli.h2
-rw-r--r--test/test_crypto.c2
-rw-r--r--test/test_crypto.h2
-rw-r--r--test/test_encoding.c2
-rw-r--r--test/test_encoding.h2
-rw-r--r--test/test_header.c2
-rw-r--r--test/test_header.h2
-rw-r--r--test/test_io.c2
-rw-r--r--test/test_io.h2
-rw-r--r--test/test_run.c2
-rw-r--r--test/test_table.c2
-rw-r--r--test/test_table.h2
28 files changed, 29 insertions, 28 deletions
diff --git a/src/cli.c b/src/cli.c
index 41ed8a1..feb9718 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -1,6 +1,6 @@
/* cli.c -- Code for providing a command-line interface.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/cli.h b/src/cli.h
index 662d955..8e16020 100644
--- a/src/cli.h
+++ b/src/cli.h
@@ -1,6 +1,6 @@
/* cli.h -- Code for providing a command-line interface.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/compress.c b/src/compress.c
index 0c81271..8cbf1e1 100644
--- a/src/compress.c
+++ b/src/compress.c
@@ -1,6 +1,6 @@
/* compress.c -- Wrappers for compression and decompression with zlib.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/compress.h b/src/compress.h
index 495a504..070151f 100644
--- a/src/compress.h
+++ b/src/compress.h
@@ -1,6 +1,6 @@
/* compress.h -- Wrappers for compression and decompression with zlib.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/crypto.c b/src/crypto.c
index 1189882..3dad218 100644
--- a/src/crypto.c
+++ b/src/crypto.c
@@ -1,6 +1,6 @@
/* crypto.c -- Code for deriving encryption keys.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/crypto.h b/src/crypto.h
index 0984cc7..11b0fc5 100644
--- a/src/crypto.h
+++ b/src/crypto.h
@@ -1,6 +1,6 @@
/* crypto.h -- Code for deriving encryption keys.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/encoding.c b/src/encoding.c
index 6ad4ea1..e83c79c 100644
--- a/src/encoding.c
+++ b/src/encoding.c
@@ -1,6 +1,6 @@
/* encoding.c -- Code for working with encoded strings.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/encoding.h b/src/encoding.h
index cfb49c8..d47f78e 100644
--- a/src/encoding.h
+++ b/src/encoding.h
@@ -1,6 +1,6 @@
/* encoding.h -- Code for working with encoded strings.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/header.c b/src/header.c
index d451149..6389817 100644
--- a/src/header.c
+++ b/src/header.c
@@ -1,6 +1,6 @@
/* header.c -- Code for handling the archive's header section.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/header.h b/src/header.h
index 529e801..d45d4b0 100644
--- a/src/header.h
+++ b/src/header.h
@@ -1,6 +1,6 @@
/* header.h -- Code for handling the archive's header section.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/io.c b/src/io.c
index 9074e00..1004251 100644
--- a/src/io.c
+++ b/src/io.c
@@ -1,6 +1,6 @@
/* io.c -- Code for file and memory I/O.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/io.h b/src/io.h
index 5c64857..3caaa95 100644
--- a/src/io.h
+++ b/src/io.h
@@ -1,6 +1,6 @@
/* io.h -- Code for file and memory I/O.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/main.c b/src/main.c
index 973bbd2..9b24fe6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/* main.c -- Entry point to the program.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
@@ -35,6 +35,7 @@
#define VERSION_STR "2.0.0a2"
+
/* Pointer to a function to be mapped to entries in the table. */
typedef void (*mapfn)(struct stream *archive, struct table_entry *e,
struct params p);
diff --git a/src/table.c b/src/table.c
index 37c6e81..5a0b262 100644
--- a/src/table.c
+++ b/src/table.c
@@ -1,6 +1,6 @@
/* table.c -- Code for handling the archive's table section.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/src/table.h b/src/table.h
index 50124fe..1f40390 100644
--- a/src/table.h
+++ b/src/table.h
@@ -1,6 +1,6 @@
/* table.h -- Code for handling the archive's table section.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_cli.c b/test/test_cli.c
index f52ae0d..c4b42f4 100644
--- a/test/test_cli.c
+++ b/test/test_cli.c
@@ -1,6 +1,6 @@
/* test_cli.c -- MinUnit test cases for cli.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_cli.h b/test/test_cli.h
index b42bb4d..e580236 100644
--- a/test/test_cli.h
+++ b/test/test_cli.h
@@ -1,6 +1,6 @@
/* test_cli.h -- MinUnit test cases for cli.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_crypto.c b/test/test_crypto.c
index db66d7e..7071c03 100644
--- a/test/test_crypto.c
+++ b/test/test_crypto.c
@@ -1,6 +1,6 @@
/* test_crypto.c -- MinUnit test cases for crypto.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_crypto.h b/test/test_crypto.h
index ee2e4ec..41710fa 100644
--- a/test/test_crypto.h
+++ b/test/test_crypto.h
@@ -1,6 +1,6 @@
/* test_crypto.h -- MinUnit test cases for crypto.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_encoding.c b/test/test_encoding.c
index 50a0466..3502838 100644
--- a/test/test_encoding.c
+++ b/test/test_encoding.c
@@ -1,6 +1,6 @@
/* test_encoding.c -- MinUnit test cases for encoding.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_encoding.h b/test/test_encoding.h
index 6531382..8bb66ad 100644
--- a/test/test_encoding.h
+++ b/test/test_encoding.h
@@ -1,6 +1,6 @@
/* test_encoding.h -- MinUnit test cases for encoding.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_header.c b/test/test_header.c
index 2df2b0f..0525614 100644
--- a/test/test_header.c
+++ b/test/test_header.c
@@ -1,6 +1,6 @@
/* test_header.c -- MinUnit test cases for header.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_header.h b/test/test_header.h
index 5a23235..8a6eeb0 100644
--- a/test/test_header.h
+++ b/test/test_header.h
@@ -1,6 +1,6 @@
/* test_header.h -- MinUnit test cases for header.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_io.c b/test/test_io.c
index 99e84db..0596dbc 100644
--- a/test/test_io.c
+++ b/test/test_io.c
@@ -1,6 +1,6 @@
/* test_io.c -- MinUnit test cases for io.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_io.h b/test/test_io.h
index 1889e8e..da8caf7 100644
--- a/test/test_io.h
+++ b/test/test_io.h
@@ -1,6 +1,6 @@
/* test_io.h -- MinUnit test cases for io.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_run.c b/test/test_run.c
index 9b5be20..04099d4 100644
--- a/test/test_run.c
+++ b/test/test_run.c
@@ -1,6 +1,6 @@
/* test_io.c -- MinUnit test runner.
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_table.c b/test/test_table.c
index d459de0..f5a3a04 100644
--- a/test/test_table.c
+++ b/test/test_table.c
@@ -1,6 +1,6 @@
/* test_table.c -- MinUnit test cases for table.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.
diff --git a/test/test_table.h b/test/test_table.h
index bd3efa8..7dff263 100644
--- a/test/test_table.h
+++ b/test/test_table.h
@@ -1,6 +1,6 @@
/* test_table.h -- MinUnit test cases for table.c
- Copyright (C) 2017 Jakob Tsar-Fox, All Rights Reserved.
+ Copyright (C) 2017 Jakob Kreuze, All Rights Reserved.
This file is part of Nekopack.