| 160 | |
| 161 | |
| 162 | static ILuint XpmHash(const ILubyte* name, int len) |
| 163 | { |
| 164 | ILint i, sum; |
| 165 | for (sum = i = 0; i < len; ++i) |
| 166 | sum += name[i]; |
| 167 | return sum % XPM_HASH_LEN; |
| 168 | } |
| 169 | |
| 170 | |
| 171 | XPMHASHENTRY** XpmCreateHashTable() |
no outgoing calls
no test coverage detected