Applied GNU GPL License

This commit is contained in:
XOR 2023-04-07 01:32:14 +02:00
parent 0bf32ede5e
commit a321706d65
3 changed files with 18 additions and 0 deletions

View file

View file

@ -1,3 +1,12 @@
// This file contains the implementation of the functions used by the shash-hashtable library and is part of the shash library
// Copyright (C) 2023 theboring_XOR
// 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 "shash.h"
static int get_empty_hashtable_slot(shash_hashtable_t *hashtable)

View file

@ -1,3 +1,12 @@
// This file contains the definitions of the public functions used by the shash-hashtable library and is part of the shash library
// Copyright (C) 2023 theboring_XOR
// 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/>.
#ifndef _SHASH_H
#define _SHASH_H