# HG changeset patch # User John Tsiombikas # Date 1397730943 -10800 # Node ID 5b955b3a4675fffcd6c59db4b2b114515da1fd09 # Parent ea44ca011995e0aca53e8be634ec93160bf3aef3 readme, copying, copyright headers diff -r ea44ca011995 -r 5b955b3a4675 .hgignore --- a/.hgignore Sat Jan 18 15:26:11 2014 +0200 +++ b/.hgignore Thu Apr 17 13:35:43 2014 +0300 @@ -5,3 +5,5 @@ rbtree\.a$ rbtree\.so ^test/.*test$ +\.ttf$ +linlibertine/ diff -r ea44ca011995 -r 5b955b3a4675 COPYING --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/COPYING Thu Apr 17 13:35:43 2014 +0300 @@ -0,0 +1,27 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + (1) Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + (2) Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + (3)The name of the author may not be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff -r ea44ca011995 -r 5b955b3a4675 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Thu Apr 17 13:35:43 2014 +0300 @@ -0,0 +1,8 @@ +rbtree +------ +Simple balanced binary search tree (red-black tree) library. + +Copyright (C) 2011-2014 John Tsiombikas + +rbtree is free software, feel free to use, modify, and redistribute it, under +the terms of the 3-clause BSD license. See COPYING for details. diff -r ea44ca011995 -r 5b955b3a4675 src/rbtree.c --- a/src/rbtree.c Sat Jan 18 15:26:11 2014 +0200 +++ b/src/rbtree.c Thu Apr 17 13:35:43 2014 +0300 @@ -1,3 +1,10 @@ +/* +rbtree - simple balanced binary search tree (red-black tree) library. +Copyright (C) 2011-2014 John Tsiombikas + +rbtree is free software, feel free to use, modify, and redistribute it, under +the terms of the 3-clause BSD license. See COPYING for details. + */ #include #include #include diff -r ea44ca011995 -r 5b955b3a4675 src/rbtree.h --- a/src/rbtree.h Sat Jan 18 15:26:11 2014 +0200 +++ b/src/rbtree.h Thu Apr 17 13:35:43 2014 +0300 @@ -1,3 +1,10 @@ +/* +rbtree - simple balanced binary search tree (red-black tree) library. +Copyright (C) 2011-2014 John Tsiombikas + +rbtree is free software, feel free to use, modify, and redistribute it, under +the terms of the 3-clause BSD license. See COPYING for details. + */ #ifndef RBTREE_H_ #define RBTREE_H_