X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Favl_tree.h;h=516f52715febeb9137045ea15c5294ff16123f6f;hb=8618172276fae088f311923a61bbf26c3d4d8941;hp=a281d635a60cf65c7e492e6f0a5a8cde3c61b763;hpb=83a29687e9fd2a8b9367c735b6e3273ac82ef99b;p=wimlib diff --git a/include/wimlib/avl_tree.h b/include/wimlib/avl_tree.h index a281d635..516f5271 100644 --- a/include/wimlib/avl_tree.h +++ b/include/wimlib/avl_tree.h @@ -1,14 +1,22 @@ /* - * avl_tree.h + * avl_tree.h - intrusive, nonrecursive AVL tree data structure (self-balancing + * binary search tree), header file * - * Intrusive, nonrecursive AVL tree data structure (self-balancing binary search - * tree), header file. + * The following copying information applies to this specific source code file: * - * Author: Eric Biggers - * Year: 2014 + * Written in 2014 by Eric Biggers * - * The author dedicates this file to the public domain. - * You can do whatever you want with this file. + * To the extent possible under law, the author(s) have dedicated all copyright + * and related and neighboring rights to this software to the public domain + * worldwide via the Creative Commons Zero 1.0 Universal Public Domain + * Dedication (the "CC0"). + * + * This software 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 CC0 for more details. + * + * You should have received a copy of the CC0 along with this software; if not + * see . */ #ifndef _AVL_TREE_H_ @@ -16,7 +24,7 @@ #include #include -#include /* for uintptr_t */ +#include /* for uintptr_t */ #ifdef __GNUC__ # define AVL_INLINE inline __attribute__((always_inline))