Files
RockOS/kernel/lib/memory.h

13 lines
265 B
C
Raw Normal View History

2026-06-24 13:30:23 -05:00
#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