Initial commit

This commit is contained in:
ssimnb 2026-03-04 07:19:48 +01:00
commit ef80f65fbf
136 changed files with 13728 additions and 0 deletions

18
include/string.h Normal file
View file

@ -0,0 +1,18 @@
#ifndef STRING_H
#define STRING_H
#include <stdint.h>
void *memset(void *addr, int c, uint64_t n);
void *memcpy(void *dest, void *src, uint64_t n);
void *memmove(void *dest, const void *src, uint64_t n);
int memcmp(const void *s1, const void *s2, uint64_t n);
uint64_t strlen(const char* str);
void itoa(char *str, int number);
#endif