Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
245 B

4 years ago
  1. /*
  2. ** hash : hashes the given string by adding all the chars in the string.
  3. */
  4. unsigned short
  5. hash ( name )
  6. register char *name;
  7. {
  8. register unsigned short i = 0;
  9. register unsigned short c;
  10. while (c = *name++)
  11. i += c;
  12. return( i );
  13. }