clox/table.h
2019-06-02 14:58:15 -05:00

27 lines
560 B
C

#ifndef clox_table_h
#define clox_table_h
#include "common.h"
#include "value.h"
typedef struct {
Value key;
Value value;
} Entry;
typedef struct {
int count;
int capacity;
Entry* entries;
} Table;
void initTable(Table* table);
void freeTable(Table* table);
bool tableGet(Table* table, Value key, Value* value);
bool tableSet(Table* table, Value key, Value value);
bool tableDelete(Table* table, Value key);
void tableAddAll(Table* from, Table* to);
ObjString* tableFindString(Table* table, const char* chars, int length, uint32_t hash);
#endif