summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorDaniel Bovensiepen <[email protected]>2012-12-05 17:45:24 +0800
committerDaniel Bovensiepen <[email protected]>2012-12-05 17:45:24 +0800
commitbe99d87ca49da86f1795bd1779f9ce82cf821a6e (patch)
tree1de9b778cd4414956f2864cbb8f0fca76f7c346b /include
parent471c00a31dcaa04d4658de9b59fc23b24479d2fd (diff)
parentb8e5a570479a2e45d8746d85df15f84b619466d6 (diff)
downloadmruby-be99d87ca49da86f1795bd1779f9ce82cf821a6e.tar.gz
mruby-be99d87ca49da86f1795bd1779f9ce82cf821a6e.zip
rename mrb_load_irep for mrbtest to be consistent to name change
Diffstat (limited to 'include')
-rw-r--r--include/mruby/dump.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/mruby/dump.h b/include/mruby/dump.h
index cad797275..87c9841e6 100644
--- a/include/mruby/dump.h
+++ b/include/mruby/dump.h
@@ -16,9 +16,10 @@ extern "C" {
#include <stdint.h>
int mrb_dump_irep(mrb_state*,int,FILE*);
-int mrb_load_irep(mrb_state*,FILE*);
-int mrb_load_irep_offset(mrb_state*,FILE*,long);
int mrb_read_irep(mrb_state*,const char*);
+int mrb_read_irep_file(mrb_state*,FILE*);
+mrb_value mrb_load_irep(mrb_state*,const char*);
+mrb_value mrb_load_irep_file(mrb_state*,FILE*);
int mrb_bdump_irep(mrb_state *mrb, int n, FILE *f,const char *initname);