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

View File

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

View File

@ -2,6 +2,7 @@
#define __MYSTDLIB_INCLUDE_H_
namespace bse {
template<typename T>
void memcpy(T* destination, T* source, unsigned int count = 1) {
for (unsigned int i = 0; i < count; ++i) {