Is there an equivalent to C's memcpy?
Posted: Thu Mar 03, 2011 1:30 pm
Hey there!
What is the most efficient way to copy the content of s into d?
Is there an equivalent to C's memcpy?
What is the most efficient way to copy the content of s into d?
Is there an equivalent to C's memcpy?
Code: Select all
(let ((s "hello world")
(d (make-string 50)))
;; What is the most efficient way to copy the content of s into d?
;; Is there an equivalent to C's memcpy?
)