shithub: femtolisp

ref: f23a3721b226eac723dc3ac4a1d45571bb878c39
dir: /equal.h/

View raw version
#ifndef EQUAL_H
#define EQUAL_H

value_t fl_compare(value_t a, value_t b);
value_t fl_equal(value_t a, value_t b);
int equal_lispvalue(value_t a, value_t b);
uintptr_t hash_lispvalue(value_t a);
value_t compare_(value_t a, value_t b, int eq);

#endif