I have a function that is doing memcpy, but it\'s taking up an enormous amount of cycles. Is there a faster alternative/approach than using memcpy to move a piece of memory?
Usually the standard library shipped with the compiler will implement memcpy() the fastest way possible for the target platform already.
memcpy()