7#define st_replace rb_st_replace
9#define st_init_existing_table_with_size rb_st_init_existing_table_with_size
11st_table *rb_st_init_existing_numtable_with_size(
st_table *tab, st_index_t size);
12#define st_init_existing_numtable_with_size rb_st_init_existing_numtable_with_size
14st_table *rb_st_init_existing_strtable_with_size(
st_table *tab, st_index_t size);
15#define st_init_existing_strtable_with_size rb_st_init_existing_strtable_with_size
17size_t rb_st_allocated_memsize(
const st_table *tab);
18#define st_allocated_memsize rb_st_allocated_memsize
20void rb_st_free_embedded_table(
st_table *tab);
21#define st_free_embedded_table rb_st_free_embedded_table
23int rb_st_insert_no_rebuild(
st_table *tab, st_data_t key, st_data_t value);
24#define st_insert_no_rebuild rb_st_insert_no_rebuild
26typedef int st_foreach_with_hash_callback_func(st_data_t, st_data_t, st_data_t, st_data_t);
27int rb_st_foreach_with_hash(
st_table *, st_foreach_with_hash_callback_func *, st_data_t);
28#define st_foreach_with_hash rb_st_foreach_with_hash