So, I am working with this huge repository of code and realized that one of the structures lacks an important area. I looked at the code (which uses the structure) as closely as I could, and came to the conclusion that adding an extra field would not break it.
Any ideas on where I could squint?
Also: design advice is welcome - how best can I do this?
For example (if I did not understand):
typedef struct foo
{
int a;
int b;
}
foo;
Now he:
typedef struct foo
{
int a;
int b;
int c;
}
foo;
Jacob source
share