mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
45 lines
915 B
C
45 lines
915 B
C
/*
|
|
Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
|
|
Portions Copyright (c) 1999 Netscape Communications Corporation.
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef XML_UNICODE
|
|
|
|
#ifdef XML_UNICODE_WCHAR_T
|
|
typedef const wchar_t *KEY;
|
|
#else /* not XML_UNICODE_WCHAR_T */
|
|
typedef const unsigned short *KEY;
|
|
#endif /* not XML_UNICODE_WCHAR_T */
|
|
|
|
#else /* not XML_UNICODE */
|
|
|
|
typedef const char *KEY;
|
|
|
|
#endif /* not XML_UNICODE */
|
|
|
|
typedef struct {
|
|
KEY name;
|
|
} NAMED;
|
|
|
|
typedef struct {
|
|
NAMED **v;
|
|
size_t size;
|
|
size_t used;
|
|
size_t usedLim;
|
|
} HASH_TABLE;
|
|
|
|
NAMED *lookup(HASH_TABLE *table, KEY name, size_t createSize);
|
|
void hashTableInit(HASH_TABLE *);
|
|
void hashTableDestroy(HASH_TABLE *);
|
|
|
|
typedef struct {
|
|
NAMED **p;
|
|
NAMED **end;
|
|
} HASH_TABLE_ITER;
|
|
|
|
void hashTableIterInit(HASH_TABLE_ITER *, const HASH_TABLE *);
|
|
NAMED *hashTableIterNext(HASH_TABLE_ITER *);
|