mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
14 lines
91 B
C
14 lines
91 B
C
int copy = 1;
|
|
|
|
int
|
|
get_copy ()
|
|
{
|
|
return copy;
|
|
}
|
|
|
|
int *
|
|
get_copy_p ()
|
|
{
|
|
return ©
|
|
}
|