diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-01-20 04:59:39 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-01-20 04:59:39 +0000 |
| commit | a2af08da0c33d2dcde870b491f62a8bd0c1c6b81 (patch) | |
| tree | feb35473da45947378fbc02defe39bcd79ef600e /st.h | |
| parent | c5f4657aaa8a92db27dc722dee741f1b8e0da809 (diff) | |
| download | ruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.tar.gz ruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.tar.xz ruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.zip | |
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: http://svn.ruby-lang.org/repos/ruby/trunk@373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.h')
| -rw-r--r-- | st.h | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -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(); |
