How do you compare two instances of structs for equality in standard C?
|
C provides no language facilities to do this - you have to do it yourself and compare each structure member by member. |
|||||
|
|
You may be tempted to use But, if you use |
|||||||||||
|
|
If you do it a lot I would suggest writing a function that compares the two structures. That way, if you ever change the structure you only need to change the compare in one place. As for how to do it.... You need to compare every element individually |
|||
|
|
|
You can't use memcmp to compare structs for equality due to potential random padding characters between field in structs.
The above would fail for a struct like this:
You have to use member-wise comparison to be safe. |
|||||
|
|
It depends on whether the question you are asking is:
To find out if they are the same object, compare pointers to the two structs for equality. If you want to find out in general if they have the same value you have to do a deep comparison. This involves comparing all the members. If the members are pointers to other structs you need to recurse into those structs too. In the special case where the structs do not contain pointers you can do a memcmp to perform a bitwise comparison of the data contained in each without having to know what the data means. Make sure you know what 'equals' means for each member - it is obvious for ints but more subtle when it comes to floating-point values or user-defined types. |
|||
|
|
|
If the structs only contain primitives or if you are interested in strict equality then you can do something like this:
int my_struct_cmp(const struct my_struct * lhs, const struct my_struct * rhs)
{
return memcmp(lhs, rsh, sizeof(struct my_struct));
}
However, if your structs contain pointers to other structs or unions then you will need to write a function that compares the primitives properly and make comparison calls against the other structures as appropriate. Be aware, however, that you should have used memset(&a, sizeof(struct my_struct), 1) to zero out the memory range of the structures as part of your ADT initialization. |
|||
|
|
|
Note you can use memcmp() on non static stuctures without worrying about padding, as long as you don't initialise all members (at once). This is defined by C90: |
|||
|
|
|
Compare element by element its safe and doesn't fail. |
||||
|
|
if the 2 structures variable are initialied with calloc or they are set with 0 by memset so you can compare your 2 structures with memcmp and there is no worry about structure garbage and this will allow you to earn time |
|||
|
|

