1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef _FRED_XSTR_HASH_TABLE_HEADER_FILE
#define _FRED_XSTR_HASH_TABLE_HEADER_FILE
// -----------------------------------------------------------------------------------------------
// HASH DEFINES/VARS
//
// -----------------------------------------------------------------------------------------------
// HASH FUNCTIONS
//
// initialize the hash table
void fhash_init();
// set the hash table to be active for parsing
void fhash_activate();
// set the hash table to be inactive for parsing
void fhash_deactivate();
// if the hash table is active
int fhash_active();
// flush out the hash table, freeing up everything
void fhash_flush();
// add a string with the given id# to the hash table
void fhash_add_str(const char *str, int id);
// determine if the passed string exists in the table
// returns : -2 if the string doesn't exit, or >= -1 as the string id # otherwise
int fhash_string_exists(const char *str);
#endif
|