Add Table grow function

This commit is contained in:
Brandon Fish
2019-02-09 13:58:50 -06:00
parent 4e5e525626
commit 8364c39b4c
4 changed files with 35 additions and 2 deletions

View File

@ -99,6 +99,8 @@ wasmer_memory_result_t wasmer_memory_new(wasmer_memory_t **memory, wasmer_limits
void wasmer_table_destroy(wasmer_table_t *table);
wasmer_table_result_t wasmer_table_grow(wasmer_table_t *table, uint32_t delta);
uint32_t wasmer_table_length(wasmer_table_t *table);
wasmer_table_result_t wasmer_table_new(wasmer_table_t **table, wasmer_limits_t limits);