summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/st.c b/st.c
index ada4fa1489..930d40b3c6 100644
--- a/st.c
+++ b/st.c
@@ -85,11 +85,25 @@ st_init_numtable()
}
st_table*
+st_init_numtable_with_size(size)
+ int size;
+{
+ return st_init_table_with_size(&type_numhash, size);
+}
+
+st_table*
st_init_strtable()
{
return st_init_table(&type_strhash);
}
+st_table*
+st_init_strtable_with_size(size)
+ int size;
+{
+ return st_init_table_with_size(&type_strhash, size);
+}
+
void
st_free_table(table)
st_table *table;