1
Files
lecture-operating-system-de…/c_os/user/lib/MyLib.cc
2022-07-19 21:42:46 +02:00

8 lines
202 B
C++
Executable File

#include "user/lib/MyLib.h"
void bse::memset(char* destination, char value, unsigned int bytes) {
for (unsigned int byte = 0; byte < bytes; ++byte) {
*(destination + byte) = value;
}
}