View difference between Paste ID: s51MziZN and mYs4cthp
SHOW: | | - or go back to the newest paste.
1
// How I can use it now by passing every single pointer manually:
2
mrb_int a;
3
mrb_int b;
4
5
mrb_get_args(mrb, "ii", &a, &b);
6
7
// How I want to us it by passing general arguments:
8
mrb_value *args;
9
size_t size;
10
11
size = mrb_get_args(mrb, format, args);