[plt-scheme] internal scheme_memcpy?

From: Jon Rafkind (workmin at ccs.neu.edu)
Date: Wed Apr 26 21:59:16 EDT 2006

I would like to use the C function memcpy to copy chunks of memory Im 
using with ffi. On linux this works:

(define memcpy (get-ffi-obj "memcpy" #f
                (_fun _pointer _pointer _int -> _pointer)))

Probably just because libc is linked in with mzscheme but on windows I 
get an error because memcpy is not found. Is there a standard internal 
scheme function that does the same thing as memcpy I can use? Otherwise 
I guess I could just write memcpy in scheme with ptr-set!/ptr-ref.


Posted on the users mailing list.