[racket] newbie: foreign C structure definition question
Hi Racket users,
I am new to Racket Scheme, but not new to Scheme in general.
I am trying to figure out how/if I can create a Racket C foreign
structure representation of the following simple C struct using
define-cstruct:
struct X
{
int p1;
char s1[32];
};
It is the nested array that I cannot figure how to represent. I have
tried combing the Racket Guide and searched examples on the net, but I
have not found anything. Does Racket support this or have I got too
much newbie ignorance?
Thanks,
John Whittaker