Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #ifndef SIMPLE_HASH_H_
  2. #define SIMPLE_HASH_H_
  3.  
  4. #include <stddef.h>
  5. #include <stdint.h>
  6.  
  7. uint32_t hash_simple_inc(const char* pData, size_t length, uint32_t hash);
  8. uint32_t hash_simple(const char* pData, size_t length);
  9.  
  10. #endif