lisp-take-1/value/string/compare.c

13 lines
203 B
C

#include <assert.h>
#include <debug.h>
#include "compare.h"
int compare_string_values(
const struct value* a __attribute((unused)),
const struct value* b __attribute((unused)))
{
TODO;
}