https://sn-bindgen-web.indoorvivants.com/binding/082216bf-1ffa-4b41-b77a-1b8976177152
struct person {
int x;
};
struct person myfunc(struct person bla);
generated glue:
// This file was generated using sn-bindgen 0.4.4: https://sn-bindgen.indoorvivants.com/
#include <string.h>
void __sn_wrap_tests_myfunc(struct person *bla, person *____return) {
person ____ret = myfunc(*bla);
memcpy(____return, &____ret, sizeof(person));
}
without struct tag on the ____ret value, this won't compile.
https://sn-bindgen-web.indoorvivants.com/binding/082216bf-1ffa-4b41-b77a-1b8976177152
generated glue:
without
structtag on the____retvalue, this won't compile.