Files
2026-05-03 13:05:55 +04:00

9 lines
230 B
C

// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2026 0xKSor
#include <Lib/Stubs.h>
#include <Lib/String.h>
void* memset(void* destination, int value, Size count) {
return MemorySet(destination, value, count);
}