Applied GNU GPL License
This commit is contained in:
parent
0bf32ede5e
commit
a321706d65
3 changed files with 18 additions and 0 deletions
9
shash.c
9
shash.c
|
|
@ -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)
|
||||
|
|
|
|||
9
shash.h
9
shash.h
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue