mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 00:40:55 +00:00
49ca09a64f
I don't remember what half these tests were for :/
18 lines
209 B
R
18 lines
209 B
R
int y;
|
|
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++;
|
|
y = *to++;
|
|
}
|