quakeforge/tools/qfcc/test/ptrderef.r
2012-11-18 13:28:46 +09:00

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++;
}