#include #include #include "struct.h" #include "compare.h" int compare_variables( const void* a, const void* b) { const struct variable *A = a, *B = b; return compare_strings(A->name, B->name); } // wcscmp(A->name->data, B->name->data);