| 18 | } |
| 19 | |
| 20 | unsigned int StringHashContinue(unsigned int hash, const char *str) |
| 21 | { |
| 22 | int c; |
| 23 | while((c = *str++) != 0) |
| 24 | hash = ((hash << 5) + hash) + c; |
| 25 | return hash; |
| 26 | } |
| 27 | |
| 28 | unsigned int StringHashContinue(unsigned int hash, const char *str, const char *end) |
| 29 | { |
no outgoing calls
no test coverage detected