1

switch mylib to bse namespace

This commit is contained in:
2022-07-19 21:42:46 +02:00
parent 7d789f5583
commit a9c7b5161d
4 changed files with 8 additions and 8 deletions

View File

@ -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;
}