Files
object-lisp/include/lisp/hashtable.h
2025-09-03 03:20:58 -07:00

21 lines
278 B
C

#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