From 210367ec889f5910e270d6ea2c7ddb8a8d939e61 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 20 Jan 1999 04:59:39 +0000 Subject: 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 --- st.h | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'st.h') 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(); -- cgit v1.2.3