18 lines
292 B
C
18 lines
292 B
C
|
|
#include <debug.h>
|
|
|
|
#include <string/compare.h>
|
|
|
|
#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);
|