mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-30 16:10:53 +00:00
16 lines
190 B
R
16 lines
190 B
R
void
|
|
ptrderef (int *to, int *from)
|
|
{
|
|
int x;
|
|
|
|
x = *from;
|
|
x = *from++;
|
|
x = *++from;
|
|
x = ++*from;
|
|
to = from++;
|
|
to = ++from;
|
|
*to = *from++;
|
|
*to = *++from;
|
|
*to = x;
|
|
*to++ = *from++;
|
|
}
|