This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// "generic_chkd_array_client.c" | |
#include "chkd_array_client.h" | |
// Since == could not be used in the def of is_equal() for struct strct, define it here | |
static inline bool chkd_array_struct_strct_is_equal(struct strct *first, struct strct *second) | |
{ | |
return first->a == second->a && first->b == second->b; | |
} | |
// All chkd_arrays and generic functions now available in this file .... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment