Subversion Repositories Kolibri OS

Rev

Rev 145 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
610 andrew_pro 1
#include 
145 halyavin 2
void debug_out_str(char* str)
3
{
610 andrew_pro 4
  while ((*str!='\0') || (*str!=0))
145 halyavin 5
  {
6
    _msys_debug_out(*str);
7
    str++;
8
  }
9
}