#ifndef JOVE_LIB_HASH_H #define JOVE_LIB_HASH_H 1 #include static intmax_t string_hash(const char *str) { /* Hash function courtesy of the following website: * http://www.cse.yorku.ca/~oz/hash.html*/ intmax_t r = 5381; while (*str) { r = (r * 33) ^ *(str++); } return r; } #endif