summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
commit210367ec889f5910e270d6ea2c7ddb8a8d939e61 (patch)
treefeb35473da45947378fbc02defe39bcd79ef600e /st.h
parent9c5b1986a36c7a700b4c76817e35aa874ba7907c (diff)
This commit was generated by cvs2svn to compensate for changes in r372,
which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.h')
-rw-r--r--st.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/st.h b/st.h
index c27b110ce1..ce87df6011 100644
--- a/st.h
+++ b/st.h
@@ -6,14 +6,6 @@
#define ST_INCLUDED
-typedef struct st_table_entry st_table_entry;
-
-struct st_table_entry {
- char *key;
- char *record;
- st_table_entry *next;
-};
-
typedef struct st_table st_table;
struct st_hash_type {
@@ -25,19 +17,21 @@ struct st_table {
struct st_hash_type *type;
int num_bins;
int num_entries;
- st_table_entry **bins;
+ struct st_table_entry **bins;
};
-#define st_is_member(table,key) st_lookup(table,key,(char **) 0)
+#define st_is_member(table,key) st_lookup(table,key,(char **)0)
enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE};
st_table *st_init_table();
st_table *st_init_table_with_size();
st_table *st_init_numtable();
+st_table *st_init_numtable_with_size();
st_table *st_init_strtable();
-int st_delete(), st_delete_safe(), st_insert();
-int st_lookup(), st_find_or_add();
+st_table *st_init_strtable_with_size();
+int st_delete(), st_delete_safe();
+int st_insert(), st_lookup();
void st_foreach(), st_add_direct(), st_free_table();
st_table *st_copy();