aboutsummaryrefslogtreecommitdiff
path: root/gas/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'gas/hash.h')
-rw-r--r--gas/hash.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/hash.h b/gas/hash.h
index 444bcc2..f78cb73 100644
--- a/gas/hash.h
+++ b/gas/hash.h
@@ -85,4 +85,12 @@ extern void hash_traverse (struct hash_control *,
extern void hash_print_statistics (FILE *, const char *name,
struct hash_control *);
+/* Insert ELEMENT into HTAB. If the element exists, it is overwritten. */
+
+extern void htab_insert (htab_t, void *);
+
+/* Print statistics about a hash table. */
+
+extern void htab_print_statistics (FILE *f, const char *name, htab_t table);
+
#endif /* HASH_H */