summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-01-11 19:54:49 -0800
committerVito Caputo <vcaputo@pengaru.com>2023-01-11 22:31:31 -0800
commit7aeaad3e34413e7bdf78696484fa6c502c5e0617 (patch)
tree3dd10962d9d3f7afcb80a0a0f4ff4d607f9d8ccf /src
parentd72e924a845a2412d2106dc3fe0b9d59fb7faf59 (diff)
til_{stream,tap}: add GPL headers
Just some banal paperwork...
Diffstat (limited to 'src')
-rw-r--r--src/til_stream.c16
-rw-r--r--src/til_stream.h16
-rw-r--r--src/til_tap.h16
3 files changed, 48 insertions, 0 deletions
diff --git a/src/til_stream.c b/src/til_stream.c
index 0f13d1f..a47f953 100644
--- a/src/til_stream.c
+++ b/src/til_stream.c
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2023 - Vito Caputo - <vcaputo@pengaru.com>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <assert.h>
#include <errno.h>
#include <inttypes.h>
diff --git a/src/til_stream.h b/src/til_stream.h
index 91eaa55..560cc05 100644
--- a/src/til_stream.h
+++ b/src/til_stream.h
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2023 - Vito Caputo - <vcaputo@pengaru.com>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef _TIL_STREAM_H
#define _TIL_STREAM_H
diff --git a/src/til_tap.h b/src/til_tap.h
index 64eeaf0..66f1d3e 100644
--- a/src/til_tap.h
+++ b/src/til_tap.h
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2023 - Vito Caputo - <vcaputo@pengaru.com>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef _TIL_TAP_H
#define _TIL_TAP_H
© All Rights Reserved