19 lines
401 B
C
19 lines
401 B
C
#ifndef KERNEL_H
|
|
#define KERNEL_H
|
|
|
|
// Others
|
|
#include "../cpu/isr.h"
|
|
#include "../drivers/screen.h"
|
|
#include "../libc/string.h"
|
|
#include "../libc/globals.h"
|
|
#include "../libc/mem.h"
|
|
#include "../libc/linked.h"
|
|
|
|
void user_input(char *input);
|
|
node* get_holes(node *enum_head);
|
|
void print_memory(node *umem_head, node *hole_head)
|
|
int digit_len(unsigned digit);
|
|
int digit_conver(const char *str);
|
|
|
|
#endif
|