Corewar documentation 1.0.0
|
The file containing the my_memset function. More...
#include "mymemory.h"
Functions | |
void * | my_memset (void *pointer, int value, size_t size) |
Fill bytes (size) of memory area (pointer) with a value (value) | |
The file containing the my_memset function.
void * my_memset | ( | void * | pointer, |
int | value, | ||
size_t | size ) |
Fill bytes (size) of memory area (pointer) with a value (value)
pointer | The memory area to fill |
value | The value to fill the memory area with |
size | The number of bytes to fill |