memmove doesn't really move memory isn't that right? It just copies memory from one region to other and allows those two regions to overlap. I'm asking this question because I just want to know why is this fnc called in very misleading manner.
For I understand that when something is moved from one place to the other, the "thingy" is after this operation in the other place and not in the first. And with memmove it doesn't work that way. Am I right?
|
|
||||
|
|
|
You are right, it copies it. However, there is a difference between However, because of additional checks that |
||||
|
|
The difference between If you know src and dst cannot be aliases, it is safe to use |
|||||
|
|
Memmove copies data from the source to the destination. It differs from memcpy in that it is guaranteed to work on overlapping memory regions. |
|||
|
|
|
The function is named as such because if the memory regions being copied do happen to overlap it is no longer a copy, since the original buffer is no longer unchanged. Therefore the original buffer should be considered unusable. Since you're using memmove not memcpy this is likely to be the case. Therefore the naming makes sense: semantically you're moving the data not copying it. |
|||
|
|
|
Yes, |
|||
|
|
|
Yes, How this is done depends on your architecture but I've seen it done two different ways:
|
|||
|
|
|
To answer your question about As other answers mention, One thing you might want to consider is to still use
|
||||
|
|