lambda-calculus/environment/variable/compare.c
2025-01-13 20:36:07 -06:00

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);