we can reaad CDROMS

This commit is contained in:
2026-06-24 13:30:23 -05:00
parent ae4b6863bf
commit 68dbdbb2c8
7 changed files with 133 additions and 57 deletions

13
kernel/lib/memory.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef KMEMORY_H
#define KMEMORY_H
#include <stdint.h>
#include <stddef.h>
void memcpy(const void* src, void* dst, size_t sz);
void memset(const void* dst, uint8_t val, size_t sz);
int strcmp(const char *s1, const char *s2);
int strlen(const char* str);
#endif