mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
afdbd90bc1
:)
12 lines
229 B
R
12 lines
229 B
R
struct foobar_s = {
|
|
integer a;
|
|
(struct foobar_s [])[4]b;
|
|
};
|
|
typedef struct foobar_s foobar_t;
|
|
typedef foobar_t [] foobar_p;
|
|
|
|
void (foobar_p foo, vector x, integer y) bar =
|
|
{
|
|
foo.a = x.z;
|
|
foo.b[1] = (foobar_p)(integer)x.y;
|
|
};
|