| 35 | MS_CVSID("$Id$") |
| 36 | |
| 37 | static unsigned hash(const char *key) |
| 38 | { |
| 39 | unsigned hashval; |
| 40 | |
| 41 | for(hashval=0; *key!='\0'; key++) |
| 42 | hashval = tolower(*key) + 31 * hashval; |
| 43 | |
| 44 | return(hashval % MS_HASHSIZE); |
| 45 | } |
| 46 | |
| 47 | hashTableObj *msCreateHashTable() |
| 48 | { |
no outgoing calls
no test coverage detected