summaryrefslogtreecommitdiff
path: root/sal/rtl/source/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/source/hash.h')
-rw-r--r--sal/rtl/source/hash.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sal/rtl/source/hash.h b/sal/rtl/source/hash.h
new file mode 100644
index 000000000000..2aadfb33efcd
--- /dev/null
+++ b/sal/rtl/source/hash.h
@@ -0,0 +1,21 @@
+#ifndef INCLUDED_RTL_SOURCE_HASH_H
+#define INCLUDED_RTL_SOURCE_HASH_H
+
+#include <sal/types.h>
+#include <rtl/ustring.h>
+
+#if defined __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/* These functions are not multi-thread safe: */
+
+rtl_uString *rtl_str_hash_intern (rtl_uString *pString,
+ int can_return);
+void rtl_str_hash_remove (rtl_uString *pString);
+
+#if defined __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* INCLUDED_RTL_SOURCE_HASH_H */