dead@root

This commit is contained in:
2024-05-25 19:20:33 +03:00
commit ea8f6b4ce0
39 changed files with 1769 additions and 0 deletions

9
shell.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _KERNEL_SHELL_H
#define _KERNEL_SHELL_H
#define SHELL_BUFFER_SIZE 256
void shell_init(void);
void shell_parse_input(char *input);
#endif