summaryrefslogtreecommitdiff
path: root/include/filenames.h
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2012-07-13 23:39:46 +0000
committerDoug Evans <dje@google.com>2012-07-13 23:39:46 +0000
commit0429544a874ce825dffad59bf2b5c0e41d229060 (patch)
treead3d38dd0ee6805e5865606d8efc710883a8efa6 /include/filenames.h
parenta2b6eff5c47ee70428e43a2b9b089d41c4913d89 (diff)
downloadbinutils-gdb-0429544a874ce825dffad59bf2b5c0e41d229060.tar.gz
include/
* filenames.h: #include "hashtab.h". (filename_hash, filename_eq): Declare. libiberty/ * filename_cmp.c (filename_hash, filename_eq): New functions.
Diffstat (limited to 'include/filenames.h')
-rw-r--r--include/filenames.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/filenames.h b/include/filenames.h
index 75ec3302d1d..e799a51b6ad 100644
--- a/include/filenames.h
+++ b/include/filenames.h
@@ -26,6 +26,8 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef FILENAMES_H
#define FILENAMES_H
+#include "hashtab.h" /* for hashval_t */
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -84,6 +86,10 @@ extern int filename_cmp (const char *s1, const char *s2);
extern int filename_ncmp (const char *s1, const char *s2,
size_t n);
+extern hashval_t filename_hash (const void *s);
+
+extern int filename_eq (const void *s1, const void *s2);
+
#ifdef __cplusplus
}
#endif