Sfoglia il codice sorgente

man, that license stuff is hard to do right

Kosma Moczek 11 anni fa
parent
commit
b341777f60
5 ha cambiato i file con 33 aggiunte e 0 eliminazioni
  1. 5 0
      Makefile
  2. 7 0
      example.c
  3. 7 0
      minmea.c
  4. 7 0
      minmea.h
  5. 7 0
      tests.c

+ 5 - 0
Makefile

@@ -1,3 +1,8 @@
+# Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
+# This work is free. You can redistribute it and/or modify it under the
+# terms of the Do What The Fuck You Want To Public License, Version 2,
+# as published by Sam Hocevar. See the COPYING file for more details.
+
 CFLAGS = -g -Wall -Wextra -Werror
 LDFLAGS = -lcheck
 

+ 7 - 0
example.c

@@ -1,3 +1,10 @@
+/*
+ * Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
+ * This work is free. You can redistribute it and/or modify it under the
+ * terms of the Do What The Fuck You Want To Public License, Version 2,
+ * as published by Sam Hocevar. See the COPYING file for more details.
+ */
+
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>

+ 7 - 0
minmea.c

@@ -1,3 +1,10 @@
+/*
+ * Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
+ * This work is free. You can redistribute it and/or modify it under the
+ * terms of the Do What The Fuck You Want To Public License, Version 2,
+ * as published by Sam Hocevar. See the COPYING file for more details.
+ */
+
 #include "minmea.h"
 
 #include <stdlib.h>

+ 7 - 0
minmea.h

@@ -1,3 +1,10 @@
+/*
+ * Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
+ * This work is free. You can redistribute it and/or modify it under the
+ * terms of the Do What The Fuck You Want To Public License, Version 2,
+ * as published by Sam Hocevar. See the COPYING file for more details.
+ */
+
 #ifndef MINMEA_H
 #define MINMEA_H
 

+ 7 - 0
tests.c

@@ -1,3 +1,10 @@
+/*
+ * Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
+ * This work is free. You can redistribute it and/or modify it under the
+ * terms of the Do What The Fuck You Want To Public License, Version 2,
+ * as published by Sam Hocevar. See the COPYING file for more details.
+ */
+
 #include <stdlib.h>
 #include <string.h>
 #include <math.h>