1

rename lib

This commit is contained in:
2022-07-23 13:37:28 +02:00
parent 15ded9c02c
commit a56dbb316f
2 changed files with 2 additions and 1 deletions

7
c_os/user/lib/Memory.cc Executable file
View File

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