diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-07-19 19:17:29 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-07-19 19:17:29 -0700 |
commit | f16cde54cdf411f6d1a225a3adc0eba6dbe1fe2a (patch) | |
tree | a4ca01aca368d70837adcbbb4899c058d2586bf4 /src/libs/txt | |
parent | 165e6639469a5b8d81cc7511b4b9fde302d974aa (diff) |
libs/txt: add GPLv2 comment blocks
I'm probably going to borrow some of these for headless text
rendering in vwm/vmon, just doing some paperwork first.
Diffstat (limited to 'src/libs/txt')
-rw-r--r-- | src/libs/txt/txt.c | 16 | ||||
-rw-r--r-- | src/libs/txt/txt.h | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/libs/txt/txt.c b/src/libs/txt/txt.c index 2e74340..e55c9f2 100644 --- a/src/libs/txt/txt.c +++ b/src/libs/txt/txt.c @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2019 - 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 <stdarg.h> #include <stdlib.h> diff --git a/src/libs/txt/txt.h b/src/libs/txt/txt.h index 04cf09e..318c23b 100644 --- a/src/libs/txt/txt.h +++ b/src/libs/txt/txt.h @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2019 - 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 _TXT_H #define _TXT_H |