diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-24 09:05:23 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-24 09:05:23 -0500 |
commit | 3776fbcb74435ba11395fe5f1d80f7ede39c7d66 (patch) | |
tree | 3aa791a54f88181c6906abbd1a269d68e1c4609b /main.c | |
parent | 2a4573613033a4fe2ad520fe31e53d35a54d65b7 (diff) |
add licensing to source files
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,19 @@ +// foci - minimal forth implementation +// Copyright (C) 2025 Clyne Sullivan <clyne@bitgloo.com> +// +// 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, see <http://www.gnu.org/licenses/>. + #include "foci.h" #include <ctype.h> |