rename lib
This commit is contained in:
7
c_os/user/lib/Memory.cc
Executable file
7
c_os/user/lib/Memory.cc
Executable 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user