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
Jonathan Turner b74183bdc7 fixed args.
2023-11-29 17:51:29 -05:00

18 lines
350 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);
void print_holes(node *enum_head);
int digit_len(unsigned digit);
int digit_conver(const char *str);
#endif