Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // How I can use it now by passing every single pointer manually:
- mrb_int a;
- mrb_int b;
- mrb_get_args(mrb, "ii", &a, &b);
- // How I want to us it by passing general arguments:
- mrb_value *args;
- size_t size;
- size = mrb_get_args(mrb, format, args);
Advertisement
Add Comment
Please, Sign In to add comment