From 14b3866ac09c80b8f34d79227d743eabb2da0f2a Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 4 Jun 2022 22:00:27 -0700 Subject: Chapter 26.1, 26.2, 26.3, and 26.4 --- clox/src/table.h | 1 + 1 file changed, 1 insertion(+) (limited to 'clox/src/table.h') diff --git a/clox/src/table.h b/clox/src/table.h index b4c3271..b2bf7a3 100644 --- a/clox/src/table.h +++ b/clox/src/table.h @@ -23,5 +23,6 @@ bool tableDelete(Table *table, ObjString *key); void tableAddAll(Table *from, Table *to); ObjString *tableFindString(Table *talbe, const char *chars, int length, uint32_t hash); +void markTable(Table *table); #endif -- cgit v1.2.3-54-g00ecf