Subversion Repositories Kolibri OS

Rev

Rev 8632 | Blame | Last modification | View Log | RSS feed

  1. #ifndef _SHELL_API_H_
  2. #define _SHELL_API_H_
  3.  
  4. #include <stddef.h>
  5.  
  6. extern void _FUNC(shell_printf)(const char* format, ...);
  7. extern void _FUNC(shell_puts)(const char *s);
  8. extern void _FUNC(shell_putc)(char c);
  9. extern char _FUNC(shell_getc)();
  10. extern void _FUNC(shell_gets)(char *str);
  11. extern void _FUNC(shell_cls)();
  12. extern void _FUNC(shell_exit)();
  13. extern unsigned _FUNC(shell_get_pid)();
  14. extern int  _FUNC(shell_ping)();
  15. #endif