Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <shell_api.h>
  2. #include <string.h>
  3.  
  4. void shell_puts(const char *str)
  5. {
  6.     __shell_init();
  7.     *__shell_shm = SHELL_PUTS;
  8.     strcpy(__shell_shm+1, str);
  9.     __SHELL_WAIT();
  10. }