This commit is contained in:
nub31
2025-09-03 13:13:16 +02:00
parent c338e05648
commit 87d1a291f7
26 changed files with 353 additions and 287 deletions

6
src/stdlib/mem.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include <stddef.h>
#include <stdint.h>
void memset(void* destination, uint8_t value, size_t length);