| 790 | } |
| 791 | |
| 792 | unsigned int GetStringHash(const char *str) |
| 793 | { |
| 794 | unsigned int hash = 5381; |
| 795 | int c; |
| 796 | while((c = *str++) != 0) |
| 797 | hash = ((hash << 5) + hash) + c; |
| 798 | return hash; |
| 799 | } |
| 800 | |
| 801 | unsigned __nullcRegisterFunction(const char* name, void* fPtr, unsigned extraType, unsigned funcType) |
| 802 | { |
no outgoing calls
no test coverage detected