mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-12 23:54:07 +00:00
39 lines
334 B
C
39 lines
334 B
C
main() {}
|
|
|
|
memchar() {
|
|
char x, *p;
|
|
|
|
&x, &p;
|
|
x = *p++;
|
|
x = *++p;
|
|
x = *p--;
|
|
x = *--p;
|
|
}
|
|
|
|
memint() {
|
|
int x, *p;
|
|
|
|
&x, &p;
|
|
x = *p++;
|
|
x = *++p;
|
|
x = *p--;
|
|
x = *--p;
|
|
}
|
|
|
|
regchar() {
|
|
register char x, *p;
|
|
|
|
x = *p++;
|
|
x = *++p;
|
|
x = *p--;
|
|
x = *--p;
|
|
}
|
|
|
|
regint() {
|
|
register int x, *p;
|
|
|
|
x = *p++;
|
|
x = *++p;
|
|
x = *p--;
|
|
x = *--p;
|
|
}
|