1
Files
lecture-operating-system-de…/c_os/lib/MyStdLib.cc

8 lines
193 B
C++

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