os/shell.h

10 lines
148 B
C
Raw Normal View History

2024-05-25 19:20:33 +03:00
#ifndef _KERNEL_SHELL_H
#define _KERNEL_SHELL_H
#define SHELL_BUFFER_SIZE 256
void shell_init(void);
void shell_parse_input(char *input);
#endif