mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
12 lines
360 B
C
12 lines
360 B
C
#ifndef INTERNAL_ST_H
|
|
#define INTERNAL_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
|
|
|
|
#endif
|