From 8d743dab7a2dc32f47c50e7a64e3b93a47730001 Mon Sep 17 00:00:00 2001 From: DTB Date: Mon, 15 Jul 2024 03:43:25 -0600 Subject: [PATCH] strcmp(1): add copyright header I could trace strcmp(1) as far back as in my repo. --- src/strcmp.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/strcmp.c b/src/strcmp.c index 33b73c2..bd42054 100644 --- a/src/strcmp.c +++ b/src/strcmp.c @@ -1,3 +1,21 @@ +/* + * Copyright (c) 2022–2024 DTB + * SPDX-License-Identifier: AGPL-3.0-or-later + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU Affero 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 Affero General Public License for more + * details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + #include /* fprintf(3), stderr */ #include /* EXIT_FAILURE */ #include