Initial commit
This commit is contained in:
20
include/lisp/hashtable.h
Normal file
20
include/lisp/hashtable.h
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef INCLUDED_HASHTABLE_H
|
||||
#define INCLUDED_HASHTABLE_H
|
||||
|
||||
#include "lisp/object.h"
|
||||
#include "lisp/util.h"
|
||||
|
||||
LISP_BEGIN_DECLS
|
||||
|
||||
DECLARE_CLASS(Hashtable);
|
||||
|
||||
struct Hashtable {
|
||||
Object base;
|
||||
HTTable *table;
|
||||
};
|
||||
struct HashtableClass {
|
||||
Class base;
|
||||
};
|
||||
|
||||
LISP_END_DECLS
|
||||
#endif
|
Reference in New Issue
Block a user