From c68f0ffa5abe1cda71d12fd8ef57bfd4f0df1a37 Mon Sep 17 00:00:00 2001 From: Nils Faerber Date: Sat, 6 Nov 2010 00:51:52 +0100 Subject: [PATCH] Add license headers --- decoder/bitstream.c | 10 ++++++++++ decoder/bitstream.h | 10 ++++++++++ decoder/rds.c | 10 ++++++++++ decoder/rds.h | 10 ++++++++++ decoder/rds_consts.h | 10 ++++++++++ decoder/rds_test.c | 10 ++++++++++ decoder/tmc.c | 10 ++++++++++ decoder/tmc.h | 10 ++++++++++ decoder/tmc_consts.h | 10 ++++++++++ decoder/uberradio.c | 10 ++++++++++ 10 files changed, 100 insertions(+) diff --git a/decoder/bitstream.c b/decoder/bitstream.c index 82ba2ac..c884489 100644 --- a/decoder/bitstream.c +++ b/decoder/bitstream.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 #include #include diff --git a/decoder/bitstream.h b/decoder/bitstream.h index 901f705..29ea8f8 100644 --- a/decoder/bitstream.h +++ b/decoder/bitstream.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 diff --git a/decoder/rds.c b/decoder/rds.c index ef24cd3..677609f 100644 --- a/decoder/rds.c +++ b/decoder/rds.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 #include #include diff --git a/decoder/rds.h b/decoder/rds.h index fb56ffe..862a933 100644 --- a/decoder/rds.h +++ b/decoder/rds.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 diff --git a/decoder/rds_consts.h b/decoder/rds_consts.h index e45d6bf..ca69b73 100644 --- a/decoder/rds_consts.h +++ b/decoder/rds_consts.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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", diff --git a/decoder/rds_test.c b/decoder/rds_test.c index 3488300..eb9bf70 100644 --- a/decoder/rds_test.c +++ b/decoder/rds_test.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 #include #include diff --git a/decoder/tmc.c b/decoder/tmc.c index 5ab5083..f25d277 100644 --- a/decoder/tmc.c +++ b/decoder/tmc.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 #include #include diff --git a/decoder/tmc.h b/decoder/tmc.h index 906b51f..6c1ac76 100644 --- a/decoder/tmc.h +++ b/decoder/tmc.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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]; }; diff --git a/decoder/tmc_consts.h b/decoder/tmc_consts.h index f4434cf..e088a3e 100644 --- a/decoder/tmc_consts.h +++ b/decoder/tmc_consts.h @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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", diff --git a/decoder/uberradio.c b/decoder/uberradio.c index f870807..eb1aa19 100644 --- a/decoder/uberradio.c +++ b/decoder/uberradio.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2009, 2010 by Nils Faerber + * + * 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 #include #include -- 2.39.2