It's unacceptable whenmemcpyhas overlapping source and destination regions. To handle such cases in C,memmovefunction is available. As you have been tagged C++ in this context, you may want to contemplate utilizingstd::copyinstead ofmemcpy, as the former has a less stringent constraint. In your...
memcpy() is part of the standard C library. Its prototype is in <string.h> which is included in F2808_example.h -Lori Up0TrueDown Eric Shufro15 年多前in reply toLori Heustess Prodigy20points Actually, memcpy() is not defined as typed in the C2000 string.h. How...