move logger
This commit is contained in:
7
c_os/user/lib/mem/Memory.cc
Executable file
7
c_os/user/lib/mem/Memory.cc
Executable file
@ -0,0 +1,7 @@
|
||||
#include "Memory.h"
|
||||
|
||||
void bse::memset(char* destination, const char value, const unsigned int bytes) {
|
||||
for (unsigned int byte = 0; byte < bytes; ++byte) {
|
||||
*(destination + byte) = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user