Guest User

Untitled

a guest
Apr 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. static inline ulong zend_inline_hash_func(char *arKey, uint nKeyLength)
  2. {
  3.         ulong h = 5381;
  4.         char *arEnd = arKey + nKeyLength;
  5.  
  6.         while (arKey < arEnd) {
  7.                 h += (h << 5);
  8.                 h += (ulong) *arKey++;
  9.         }
  10.         return h;
  11. }
Add Comment
Please, Sign In to add comment