42sh 1.0.0
Create a shell in C
|
The file containing the my_memmove function. More...
#include "mymemory.h"
Functions | |
void * | my_memmove (void *destination, const void *source, size_t size) |
Moves bytes (size) from memory area (source) to memory area (destination) | |
The file containing the my_memmove function.
void * my_memmove | ( | void * | destination, |
const void * | source, | ||
size_t | size ) |
Moves bytes (size) from memory area (source) to memory area (destination)
destination | The destination memory area |
source | The source memory area |
size | The number of bytes to copy |