Sync/include/kernel/utils.h

15 lines
274 B
C
Raw Normal View History

2019-04-03 21:46:58 +00:00
#pragma once
#include <stddef.h>
/* A temporary file, to get the system compiling. */
size_t strlen(const char*);
unsigned char inb(unsigned short);
2019-04-06 19:06:19 +00:00
void outb(unsigned short, unsigned char);
void memcpy(void*, void*, size_t);
void memset(void*, int, size_t);