1
Files
lecture-operating-system-de…/c_os/lib/MyStdLib.cc
2022-05-15 15:29:46 +02:00

8 lines
197 B
C++
Executable File

#include "MyStdLib.h"
void mmem::memset(char* destination, char value, unsigned int bytes) {
for (unsigned int byte = 0; byte < bytes; ++byte) {
*(destination + byte) = value;
}
}