Tagged Questions
4
votes
1answer
746 views
C/C++ map binary data to struct members [closed]
Lets say, I have the following text file:
Listing 1:
Endianess=little
AddressModel=32
typedef struct{
int x;
int y;
float f;
double d;
} A;
...
2
votes
4answers
104 views
In C, would XML be a good format to use internally for a RPG engine?
I am a novice C coder who would like to write a role playing game resolution library. What I mean by this is that this program would only deal with resolving those conflicts which is piped into it. ...