Libkern string

This commit is contained in:
Imbus 2025-08-16 14:57:54 +02:00
parent f45d2a29fc
commit 6c3030c896
2 changed files with 134 additions and 0 deletions

7
kern/libkern/string.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
#include <types.h>
void *memcpy(void *s1, const void *s2, size_t n);
void *memmove(void *s1, const void *s2, size_t n);
void *memset(void *dest, int c, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);