ecl_setq
— C equivalent of setq
ecl_setq(
cl_env_ptr cl_env,
cl_object var,
cl_object value)
;
Assigns value
to the special variable denoted by the symbol var
, in the Common Lisp environment cl_env
.
This function implements a variable assignment, not a variable binding. It is thus the equivalent of setq.