diff options
author | Yukihiro Matsumoto <matz@ruby-lang.org> | 1997-12-25 17:06:30 +0900 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2019-08-17 22:09:33 +0900 |
commit | 4207990990f8c8da414710816c32ae5fd0ae6987 (patch) | |
tree | 655a18271e3e85812f7fc6e008400f2f4f795593 /st.h | |
parent | 66541bbb3630a5c512f8012c52ae777ab83beba5 (diff) |
version 1.0-971225v1_0_971225
https://cache.ruby-lang.org/pub/ruby/1.0/ruby-1.0-971225.tar.gz
Thu Dec 25 17:06:30 1997 Yukihiro Matsumoto <matz@netlab.co.jp>
* version 1.0-971225
* some minor bug fixes.
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -36,8 +36,9 @@ st_table *st_init_table(); st_table *st_init_table_with_size(); st_table *st_init_numtable(); st_table *st_init_strtable(); -int st_delete(), st_insert(), st_foreach(), st_free_table(); -int st_lookup(), st_find_or_add(), st_add_direct(); +int st_delete(), st_delete_safe(), st_insert(); +int st_lookup(), st_find_or_add(); +void st_foreach(), st_add_direct(), st_free_table(); st_table *st_copy(); #define ST_NUMCMP ((int (*)()) 0) |