|
|
|
@@ -2,14 +2,6 @@ struct Lisp_Object; |
|
|
|
struct String; |
|
|
|
struct Environment; |
|
|
|
|
|
|
|
unsigned int hm_hash(char* str); |
|
|
|
unsigned int hm_hash(void* str); |
|
|
|
unsigned int hm_hash(Lisp_Object* str); |
|
|
|
|
|
|
|
bool hm_objects_match(char* a, char* b); |
|
|
|
bool hm_objects_match(void* a, void* b); |
|
|
|
bool hm_objects_match(Lisp_Object* a, Lisp_Object* b); |
|
|
|
|
|
|
|
// HASH MAPS |
|
|
|
// define_hash_map(char*, String); |
|
|
|
// define_hash_map(Lisp_Object*, Lisp_Obj); |
|
|
|
|