we can reaad CDROMS
This commit is contained in:
13
kernel/lib/memory.h
Normal file
13
kernel/lib/memory.h
Normal 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
|
||||
Reference in New Issue
Block a user