gawk

[old] Sed-like interface to the Gopher protocol
Log | Files | Refs | LICENSE

commit 4d3efda82f69bc1ba930ba192d12e59a95c7d05f
parent b4d15a0913a03db122763a0928016bf6a91c12bf
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Tue,  5 Jan 2021 14:31:31 -0800

Add license headers to util.c and command.c

Diffstat:
Mcommand.c | 17+++++++++++++++++
Mutil.c | 17+++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/command.c b/command.c @@ -1,3 +1,20 @@ +/* This file is part of gawk to browse gopher servers. + * Copyright (C) 2021 Jacob R. Edwards + * + * 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 <https://www.gnu.org/licenses/>. + */ + #include <errno.h> #include <libgen.h> #include <limits.h> diff --git a/util.c b/util.c @@ -1,3 +1,20 @@ +/* This file is part of gawk to browse gopher servers. + * Copyright (C) 2021 Jacob R. Edwards + * + * 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 <https://www.gnu.org/licenses/>. + */ + #include <sys/stat.h> #include <errno.h> #include <stdarg.h>