soaplin/kernel/src/mm/memop.h
RaphProductions cab7a75780 first commit
2025-05-06 20:19:48 +02:00

13 lines
No EOL
391 B
C
Executable file

// Copyright (C) 2024 Sipaa Projects
// This code is part of the Soaplin kernel and is licensed under the terms of
// the MIT License.
#pragma once
#include <stddef.h>
#include <stdint.h>
void *memcpy(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
void *memmove(void *dest, const void *src, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);