Files
ksOS/Kernel/Source/Lib/Stubs.c
T
2026-04-27 07:02:56 +04:00

6 lines
155 B
C

#include <Lib/Stubs.h>
#include <Lib/String.h>
void* memset(void* destination, int value, Size count) {
return MemorySet(destination, value, count);
}