From 8878997baaec88d344bd1cb9eabd261cfe4b532c Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Feb 2010 14:43:39 -0500 Subject: Properly license libdhash --- common/dhash/dhash.c | 24 ++++++++++++++++++++++++ common/dhash/dhash.h | 24 ++++++++++++++++++++++++ common/dhash/dhash_example.c | 20 ++++++++++++++++++++ common/dhash/dhash_test.c | 20 ++++++++++++++++++++ 4 files changed, 88 insertions(+) diff --git a/common/dhash/dhash.c b/common/dhash/dhash.c index fb024c85..cb292b7b 100644 --- a/common/dhash/dhash.c +++ b/common/dhash/dhash.c @@ -1,3 +1,27 @@ +/* + Authors: + John Dennis + Esmond Pitt + + This implementation was based on a 3/7/1989 public domain submission + to comp.sources.misc by Esmond Pitt . + + Copyright (C) 2009 Red Hat + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + /*****************************************************************************/ /******************************** Documentation ******************************/ /*****************************************************************************/ diff --git a/common/dhash/dhash.h b/common/dhash/dhash.h index 47f96733..966b15c0 100644 --- a/common/dhash/dhash.h +++ b/common/dhash/dhash.h @@ -1,3 +1,27 @@ +/* + Authors: + John Dennis + Esmond Pitt + + This implementation was based on a 3/7/1989 public domain submission + to comp.sources.misc by Esmond Pitt . + + Copyright (C) 2009 Red Hat + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + #ifndef DHASH_H #define DHASH_H diff --git a/common/dhash/dhash_example.c b/common/dhash/dhash_example.c index 7ed01d71..bd0ca8eb 100644 --- a/common/dhash/dhash_example.c +++ b/common/dhash/dhash_example.c @@ -1,3 +1,23 @@ +/* + Authors: + John Dennis + + Copyright (C) 2009 Red Hat + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + #include #include #include diff --git a/common/dhash/dhash_test.c b/common/dhash/dhash_test.c index 27eb88d5..e5b922da 100644 --- a/common/dhash/dhash_test.c +++ b/common/dhash/dhash_test.c @@ -1,3 +1,23 @@ +/* + Authors: + John Dennis + + Copyright (C) 2009 Red Hat + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ + #include #include #include -- cgit