mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 04:52:42 -08:00
11 lines
159 B
C++
11 lines
159 B
C++
#include "cl_bridge_utils.hpp"
|
|
|
|
|
|
cl_object lispfy(string str){
|
|
return c_string_to_object(str.data());
|
|
}
|
|
|
|
string __spc_expr(string first){
|
|
return first;
|
|
}
|
|
|