first commit
This commit is contained in:
commit
cab7a75780
264 changed files with 5833 additions and 0 deletions
13
kernel/src/mm/memop.h
Executable file
13
kernel/src/mm/memop.h
Executable file
|
@ -0,0 +1,13 @@
|
|||
// 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);
|
Loading…
Add table
Add a link
Reference in a new issue