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

17 lines
285 B
C
Raw Normal View History

2023-10-18 18:04:33 +00:00
#ifndef KERNEL_H
#define KERNEL_H
2023-11-29 12:51:19 +00:00
// Others
2023-10-18 18:04:33 +00:00
#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);
2023-11-29 13:06:18 +00:00
int digit_conver(const char *str);
2023-10-18 18:04:33 +00:00
#endif