CAvl_footer.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /**
  2. * @file CAvl_footer.h
  3. * @author Ambroz Bizjak <ambrop7@gmail.com>
  4. *
  5. * @section LICENSE
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. Neither the name of the author nor the
  15. * names of its contributors may be used to endorse or promote products
  16. * derived from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21. * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  22. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #undef CAVL_PARAM_USE_COUNTS
  30. #undef CAVL_PARAM_NAME
  31. #undef CAVL_PARAM_ENTRY
  32. #undef CAVL_PARAM_LINK
  33. #undef CAVL_PARAM_KEY
  34. #undef CAVL_PARAM_ARG
  35. #undef CAVL_PARAM_COUNT
  36. #undef CAVL_PARAM_COUNT_MAX
  37. #undef CAVL_PARAM_NULL
  38. #undef CAVL_PARAM_DEREF
  39. #undef CAVL_PARAM_COMPARE_NODES
  40. #undef CAVL_PARAM_COMPARE_KEY_NODE
  41. #undef CAVL_PARAM_NODE_LINK
  42. #undef CAVL_PARAM_NODE_BALANCE
  43. #undef CAVL_PARAM_NODE_PARENT
  44. #undef CAVL_PARAM_NODE_COUNT
  45. #undef CAVL_PARAM_KEYS_ARE_INDICES
  46. #undef CAvl
  47. #undef CAvlEntry
  48. #undef CAvlLink
  49. #undef CAvlNode
  50. #undef CAvlArg
  51. #undef CAvlKey
  52. #undef CAvlCount
  53. #undef CAvlNullLink
  54. #undef CAvl_Init
  55. #undef CAvl_Deref
  56. #undef CAvl_Insert
  57. #undef CAvl_Remove
  58. #undef CAvl_Lookup
  59. #undef CAvl_LookupExact
  60. #undef CAvl_GetFirst
  61. #undef CAvl_GetLast
  62. #undef CAvl_GetNext
  63. #undef CAvl_GetPrev
  64. #undef CAvl_IsEmpty
  65. #undef CAvl_Verify
  66. #undef CAvl_Count
  67. #undef CAvl_IndexOf
  68. #undef CAvl_GetAt
  69. #undef CAvl_InsertAt
  70. #undef CAvl_link
  71. #undef CAvl_balance
  72. #undef CAvl_parent
  73. #undef CAvl_count
  74. #undef CAvl_nullnode
  75. #undef CAvl_compare_nodes
  76. #undef CAvl_compare_key_node
  77. #undef CAvl_check_parent
  78. #undef CAvl_verify_recurser
  79. #undef CAvl_assert_tree
  80. #undef CAvl_update_count_from_children
  81. #undef CAvl_rotate
  82. #undef CAvl_subtree_min
  83. #undef CAvl_subtree_max
  84. #undef CAvl_replace_subtree_fix_counts
  85. #undef CAvl_swap_nodes
  86. #undef CAvl_rebalance
  87. #undef CAvl_child_count
  88. #undef CAvl_MAX
  89. #undef CAvl_OPTNEG