]> git.lizzy.rs Git - nothing.git/blobdiff - src/ebisp/builtins.h
Add TODO(#928)
[nothing.git] / src / ebisp / builtins.h
index 270d4a6d24aa35a0a93b895e19d46dad70797232..225f1d8fc51e14a4353b0c970454cc78e2ab2c3d 100644 (file)
@@ -14,14 +14,14 @@ bool list_p(struct Expr obj);
 bool list_of_symbols_p(struct Expr obj);
 bool lambda_p(struct Expr obj);
 
-bool is_lambda(struct Cons *cons);
 bool is_special(const char *name);
 
 long int length_of_list(struct Expr obj);
 
 struct Expr assoc(struct Expr key, struct Expr alist);
 
-struct Expr
-format_list(Gc *gc, const char *format, ...);
+struct Expr list(Gc *gc, const char *format, ...);
+
+struct Expr bool_as_expr(Gc *gc, bool condition);
 
 #endif  // BUILTINS_H_