/** * @file CHash_header.h * @author Ambroz Bizjak * * @section LICENSE * * 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. Neither the name of the author nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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. */ // Preprocessor inputs: // CHASH_PARAM_NAME - name of this data structure // CHASH_PARAM_ENTRY - type of entry // CHASH_PARAM_LINK - type of entry link (usually a pointer or index to an array) // CHASH_PARAM_KEY - type of key // CHASH_PARAM_ARG - type of argument pass through to comparisons // CHASH_PARAM_NULL - invalid link // CHASH_PARAM_DEREF(arg, link) - dereference a non-null link // CHASH_PARAM_HASHFUN(arg, key) - hash function, return size_t // CHASH_PARAM_KEYSEQUAL(arg, key1, key2) - compares equality of two keys // CHASH_PARAM_GETKEY(arg, entry) - get key of entry // CHASH_PARAM_ENTRY_NEXT - next member in entry // types #define CHash CHASH_PARAM_NAME #define CHashEntry CHASH_PARAM_ENTRY #define CHashLink CHASH_PARAM_LINK #define CHashRef MERGE(CHASH_PARAM_NAME, Ref) #define CHashArg CHASH_PARAM_ARG #define CHashKey CHASH_PARAM_KEY // static values #define CHashNullLink MERGE(CHash, NullLink) #define CHashNullRef MERGE(CHash, NullRef) // public functions #define CHash_Init MERGE(CHash, _Init) #define CHash_Free MERGE(CHash, _Free) #define CHash_Deref MERGE(CHash, _Deref) #define CHash_Insert MERGE(CHash, _Insert) #define CHash_InsertMulti MERGE(CHash, _InsertMulti) #define CHash_Remove MERGE(CHash, _Remove) #define CHash_Lookup MERGE(CHash, _Lookup) #define CHash_GetFirst MERGE(CHash, _GetFirst) #define CHash_GetNext MERGE(CHash, _GetNext) #define CHash_GetNextEqual MERGE(CHash, _GetNextEqual) #define CHash_NumEntries MERGE(CHash, _NumEntries) #define CHash_IsEmpty MERGE(CHash, _IsEmpty)