/* findhash2.c */ /* Copyright 2000 by Eberhard Mattes Donated to the public domain. No warranty. 2000-04-15 Initial version */ #include #include "libemfw.h" const struct hash_entry *find_hash_entry2 (const struct hash_descr *descr, const char *s, size_t n) { return find_hash_entry (descr->hash, descr->hash_size, s, n); }