Subversion Repositories Kolibri OS

Rev

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_puts)(const char *s);
  7. extern void _FUNC(shell_putc)(char c);
  8. extern char _FUNC(shell_getc)();
  9. extern void _FUNC(shell_gets)(char *str);
  10. extern void _FUNC(shell_cls)();
  11. extern void _FUNC(shell_exit)();
  12.  
  13. #endif