summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-08-12 18:31:24 +0800
committerHarald Welte <laforge@gnumonks.org>2010-08-12 18:31:24 +0800
commit9c008a1decbaf79b5158ff31cc72296431cd2d85 (patch)
tree16f55757f364fd3c1ef74046ea631ace6efdd218
parent4d4a06afcbc6ca1a2056ab2e4973b454eba59de3 (diff)
add license headers
-rw-r--r--easytool/data.c21
-rw-r--r--easytool/easytool.c22
-rw-r--r--easytool/utils.c21
3 files changed, 64 insertions, 0 deletions
diff --git a/easytool/data.c b/easytool/data.c
index 87de407..ac5530b 100644
--- a/easytool/data.c
+++ b/easytool/data.c
@@ -1,3 +1,24 @@
+/* A reverse-engineered implementation of the EasyCard data format */
+
+/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
+ * All Rights Reserved
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
#include <string.h>
#include <stdio.h>
diff --git a/easytool/easytool.c b/easytool/easytool.c
index 52a6c53..6086916 100644
--- a/easytool/easytool.c
+++ b/easytool/easytool.c
@@ -1,3 +1,25 @@
+/* A reverse-engineered implementation of the EasyCard data format */
+
+/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
+ * All Rights Reserved
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+
#include <stdio.h>
#include <stdlib.h>
diff --git a/easytool/utils.c b/easytool/utils.c
index ab8fb72..3f3af8a 100644
--- a/easytool/utils.c
+++ b/easytool/utils.c
@@ -1,3 +1,24 @@
+/* A reverse-engineered implementation of the EasyCard data format */
+
+/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
+ * All Rights Reserved
+ *
+ * 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
#include <stdlib.h>
#include <unistd.h>
personal git repositories of Harald Welte. Your mileage may vary