diff options
Diffstat (limited to 'internal/st.h')
| -rw-r--r-- | internal/st.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/internal/st.h b/internal/st.h index a26b224505..14dcb25511 100644 --- a/internal/st.h +++ b/internal/st.h @@ -1,11 +1,20 @@ #ifndef INTERNAL_ST_H #define INTERNAL_ST_H -#include "include/ruby/st.h" +#include "ruby/st.h" st_table *rb_st_replace(st_table *new_tab, st_table *old_tab); #define st_replace rb_st_replace st_table *rb_st_init_existing_table_with_size(st_table *tab, const struct st_hash_type *type, st_index_t size); #define st_init_existing_table_with_size rb_st_init_existing_table_with_size +st_table *rb_st_init_existing_numtable_with_size(st_table *tab, st_index_t size); +#define st_init_existing_numtable_with_size rb_st_init_existing_numtable_with_size + +st_table *rb_st_init_existing_strtable_with_size(st_table *tab, st_index_t size); +#define st_init_existing_strtable_with_size rb_st_init_existing_strtable_with_size + +void rb_st_free_embedded_table(st_table *tab); +#define st_free_embedded_table rb_st_free_embedded_table + #endif |
