http://www.perlmonks.org?node_id=1031098


in reply to Re: Convert Non-standard C struct data to standard C struct
in thread Change the data to have the format which is like a C struct.

That doesn't look like any "standard C" I've ever seen?

Yeah, I agree. I haven't written C code for the last five or six years, but, to me, a standard C struct declaration usually looks more like this:

struct date { int day; int month; int year; } struct my_record_type { long key; int size; char text[128]; struct date birthdate; }