1

mark const stuff const

This commit is contained in:
2022-07-24 00:07:45 +02:00
parent 1c87110b70
commit afd5a9599d
2 changed files with 2 additions and 2 deletions

View File

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