shell.h raw
1#ifndef SHELL_H
2#define SHELL_H
3
4void init_shell();
5void shell_handle_char(char c);
6
7#endif