aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/value.h
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-09-06 02:03:31 -0700
committerGravatar Tom Willemse2021-09-06 02:03:31 -0700
commitc10cbcdf99824bf81fb0874deb258d5c8c7cb22d (patch)
tree2872be7d0038f7b0f5a88a2e34875fd856e0101a /clox/src/value.h
parent6508cfd8fe55e03a587b2f72d3ffc901d7ada049 (diff)
downloadcrafting-interpreters-c10cbcdf99824bf81fb0874deb258d5c8c7cb22d.tar.gz
crafting-interpreters-c10cbcdf99824bf81fb0874deb258d5c8c7cb22d.zip
Chapter 18
Diffstat (limited to 'clox/src/value.h')
-rw-r--r--clox/src/value.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clox/src/value.h b/clox/src/value.h
index 7478aaf..96df347 100644
--- a/clox/src/value.h
+++ b/clox/src/value.h
@@ -34,6 +34,7 @@ typedef struct {
Value *values;
} ValueArray;
+bool valuesEqual(Value a, Value b);
void initValueArray(ValueArray *array);
void writeValueArray(ValueArray *array, Value value);
void freeValueArray(ValueArray *array);