#ifndef _SHELL_API_H_ #define _SHELL_API_H_ #include extern void _FUNC(shell_puts)(const char *s); extern void _FUNC(shell_putc)(char c); extern char _FUNC(shell_getc)(); extern void _FUNC(shell_gets)(char *str); extern void _FUNC(shell_cls)(); extern void _FUNC(shell_exit)(); #endif