home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / as_1 / source_h_hash < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-11  |  197 b   |  13 lines

  1.  
  2. /*
  3. ** A simple and fast generic string hasher based on Peter K. Pearson's
  4. ** article in CACM 33-6, pp. 677.
  5. */
  6.  
  7. #ifndef _hash_h
  8. #define _hash_h
  9.  
  10. int hashstr(char *s, int maxn, int hashs);
  11.  
  12. #endif
  13.