lune/tests/ffi/external_pointer/lib.c

7 lines
90 B
C
Vendored

void pointer_write(int *a) {
*a = 123;
}
int pointer_read(int *a) {
return *a;
}