Comment by wmil
5 years ago
In the simplest case, in C you can read file data into memory, cast it as a struct, then just use that struct without ever doing any parsing.
As things get more complex you're probably going to need to manually set some pointers after loading blobs of data and casting them.
It's just the standard way of dealing with binary files in C. I'm not sure what you'd need for search terms.
Oh I understand now, thank you.