office-gobmx/sal/rtl/source/hash.h
Rüdiger Timm c7618303f2 INTEGRATION: CWS changefileheader (1.2.148); FILE MERGED
2008/04/01 12:34:19 thb 1.2.148.1: #i85898# Stripping all external header guards
2008-04-10 11:04:53 +00:00

25 lines
790 B
C

#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 */
typedef struct StringHashTableImpl StringHashTable;
StringHashTable *rtl_str_hash_new (sal_uInt32 nSize);
void rtl_str_hash_free (StringHashTable *pHash);
rtl_uString *rtl_str_hash_intern (StringHashTable *pHash,
rtl_uString *pString,
int can_return);
void rtl_str_hash_remove (StringHashTable *pHash,
rtl_uString *pString);
#if defined __cplusplus
}
#endif /* __cplusplus */
#endif /* INCLUDED_RTL_SOURCE_HASH_H */