switch mylib to bse namespace
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
#include "user/lib/MyLib.h"
|
||||
|
||||
void mmem::memset(char* destination, char value, unsigned int bytes) {
|
||||
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