test functions
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user