mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
7 lines
90 B
C
Vendored
7 lines
90 B
C
Vendored
void pointer_write(int *a) {
|
|
*a = 123;
|
|
}
|
|
|
|
int pointer_read(int *a) {
|
|
return *a;
|
|
}
|