13 lines
211 B
C
13 lines
211 B
C
|
#ifndef KERNEL_H
|
||
|
#define KERNEL_H
|
||
|
|
||
|
void user_input(char *input);
|
||
|
|
||
|
#include "../cpu/isr.h"
|
||
|
#include "../drivers/screen.h"
|
||
|
#include "../libc/string.h"
|
||
|
#include "../libc/mem.h"
|
||
|
#include "../libc/globals.h"
|
||
|
|
||
|
#endif
|