]> git.kernelconcepts.de Git - rdstmc.git/commitdiff
Add license headers
authorNils Faerber <nils.faerber@kernelconcepts.de>
Fri, 5 Nov 2010 23:51:52 +0000 (00:51 +0100)
committerNils Faerber <nils.faerber@kernelconcepts.de>
Fri, 5 Nov 2010 23:51:52 +0000 (00:51 +0100)
decoder/bitstream.c
decoder/bitstream.h
decoder/rds.c
decoder/rds.h
decoder/rds_consts.h
decoder/rds_test.c
decoder/tmc.c
decoder/tmc.h
decoder/tmc_consts.h
decoder/uberradio.c

index 82ba2ac7c56cf48c6559c01077abff95dba7a73b..c884489fc8656cd38c08f16e30b92f45423edc74 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 901f705e3484470366f973ee512cd4721c742aee..29ea8f87549fbb0ee6a74fbc4617028dadb9bacd 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #ifndef _BITSTREAM_H
 #define _BITSTREAM_H
 
index ef24cd32009860d9c3649a32c3530e98b26dc866..677609fba7a9e41665ed09c57ecf51503b49531e 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
index fb56ffe083591be1d36861b6b91198522ea2fe25..862a933021f846b01e112e47f0c43c1892e0dcb8 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #define RDS_RECEIVE_INDICATOR  1 << 0
 #define RDS_OUTPUT_STATION_ID  1 << 1
 #define RDS_OUTPUT_RADIO_TEXT  1 << 2
index e45d6bffc8b6b06fbbd4b48b117a9bfecf34b432..ca69b73917d78b8d624c6c065923087cbaf285d1 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 const char *PTY_text[] = {
        "No programme type or undefined",
        "News",
index 348830079b2c6c810fbb4d9e5956e4876271673e..eb9bf7068404e378f50d4e9fd3259b6cdf8a55b4 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
index 5ab5083caa89a5955a0f496e228375c524f0245b..f25d277af4a642d278e8079dedc804831f97cdd0 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
index 906b51ff1906649da426d3be6b4ad082031fb203..6c1ac76a5fc65d1d1ac62e30858e8bf643f27e0b 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 struct TMC_info {
        char provider_str[9];
 };
index f4434cff557ba3b2016046a5efc681a9d11e161d..e088a3ef1a5f13f9b7950a54bd2d066b9dc1ecb7 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 const char *EVNT_LABEL[] = {
        "Duration",
        "Control code",
index f870807388e0478b2c5b8665df7553b7138b3836..eb1aa19fef7d7661f10c30c276aabd6a7ed1c487 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2009, 2010 by Nils Faerber <nils.faerber@kernelconcepts.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>