home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / hash < prev    next >
Encoding:
Text File  |  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.