13 lines
No EOL
391 B
C
Executable file
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); |