aboutsummaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h
index f5f66d3..48d178c 100644
--- a/src/value.h
+++ b/src/value.h
@@ -77,6 +77,12 @@ void value_destroy(value_t value);
value_t value_from_token(struct token *token);
value_t value_copy(value_t value);
+
int value_string(value_t value, size_t buf_sz, char *buf);
+char *value_static_string(value_t value);
+
+#ifdef DEBUG
+void value_print(value_t value);
+#endif
#endif