test functions

This commit is contained in:
Arthur Barraux
2025-09-18 13:52:46 +02:00
parent 5818a8ecfc
commit ee2a34a3b1
21 changed files with 1252 additions and 1434 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef BLISP_UTILS_H_
#define BLISP_UTILS_H_
#include "data.h"
bool is_nil(Value *v);
bool is_symbol(Value *v, const char *sym);
Value *car(Value *v);
Value *cdr(Value *v);
int list_length(Value *v);
void print_value(Value *v);
#endif