You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
204 B

#ifndef KERNEL_MEM_H
#define KERNEL_MEM_H
void mem_copy(uint8_t* source, uint8_t* destination, int num_bytes);
void mem_set(uint8_t* destination, uint8_t value, uint32_t length);
#endif //KERNEL_MEM_H