Syncboot/include/kernel/utils.h
Curle e5d8c19422 Formatting and rebranding changes.
Multiboot.h is no longer needed.
2019-07-17 15:12:48 +01:00

29 lines
481 B
C
Executable File

/************************
*** Team Kitty, 2019 ***
*** Sync ***
***********************/
#pragma once
#include <stddef.h>
/* A temporary file, to get the system compiling. */
size_t strlen(const char*);
unsigned char inb(unsigned short);
void outb(unsigned short, unsigned char);
void memcpy(void*, void*, size_t);
void memset(void*, int, size_t);
void int_to_ascii(int, char*);
void int_to_hex(int, char*);
void empty_string(char*);
char* itoc(size_t);