2021-03-03 15:56:26 +01:00
|
|
|
#ifndef _SHELL_API_H_
|
|
|
|
#define _SHELL_API_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2021-03-03 21:00:50 +01:00
|
|
|
extern void _FUNC(shell_printf)(const char* format, ...);
|
2021-03-03 15:56:26 +01:00
|
|
|
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)();
|
2021-03-04 10:01:18 +01:00
|
|
|
extern unsigned _FUNC(shell_get_pid)();
|
|
|
|
extern int _FUNC(shell_ping)();
|
2021-03-03 15:56:26 +01:00
|
|
|
#endif
|