aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Picht <julian.picht@gmail.com>2016-12-20 22:26:25 +0100
committerJulian Picht <julian.picht@gmail.com>2016-12-20 22:26:25 +0100
commitbbb1ef6a917a3e0b94c8278b3c6643b523aad5c0 (patch)
tree8e0763c7b747e937f5dd6132d80f21aeba643836
parenta7b317f9d16a8fad452be0978d4456d6a2ed2c35 (diff)
downloadlibsurvive-bbb1ef6a917a3e0b94c8278b3c6643b523aad5c0.tar.gz
libsurvive-bbb1ef6a917a3e0b94c8278b3c6643b523aad5c0.tar.bz2
add copyright headers
-rw-r--r--include/disambiguator.h3
-rw-r--r--src/disambiguator.c4
-rw-r--r--tools/disambiguate/disambiguate.c6
3 files changed, 12 insertions, 1 deletions
diff --git a/include/disambiguator.h b/include/disambiguator.h
index 58bce48..a17fc8d 100644
--- a/include/disambiguator.h
+++ b/include/disambiguator.h
@@ -1,3 +1,6 @@
+// (C) 2016 Julian Picht, MIT/x11 License.
+//
+//All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses.
#ifndef DISAMBIGUATOR_H
#define DISAMBIGUATOR_H
diff --git a/src/disambiguator.c b/src/disambiguator.c
index 9b55fa4..f03299d 100644
--- a/src/disambiguator.c
+++ b/src/disambiguator.c
@@ -1,3 +1,7 @@
+// (C) 2016 Julian Picht, MIT/x11 License.
+//
+//All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses.
+
#include "../include/disambiguator.h"
#include <stdlib.h>
#include <string.h>
diff --git a/tools/disambiguate/disambiguate.c b/tools/disambiguate/disambiguate.c
index dcaf9d8..7e46625 100644
--- a/tools/disambiguate/disambiguate.c
+++ b/tools/disambiguate/disambiguate.c
@@ -1,3 +1,7 @@
+// (C) 2016 Julian Picht, MIT/x11 License.
+//
+//All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses.
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -6,7 +10,7 @@
int main() {
- FILE * f = fopen( "raw_light_data_from_watchman.csv", "r" );
+ FILE * f = fopen( "raw_light_data_from_watchman.sorted.csv", "r" );
if (f == NULL) {
fprintf(stderr, "ERROR OPENING INPUT FILE\n");
return -1;