This commit is contained in:
nub31
2025-09-03 13:44:44 +02:00
parent 204c747c43
commit 08bbe517c5
20 changed files with 44 additions and 48 deletions

View File

@@ -1,10 +0,0 @@
#include "mem.h"
#include "stdint.h"
void memset(void* destination, uint8_t value, size_t length)
{
for (size_t i = 0; i < length; i++)
{
((uint8_t*)destination)[i] = value;
}
}