This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
OS_Project/Part3/09_memory/kernel/kernel.h
2023-11-29 19:15:38 -05:00

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