e5c041df96
Correction of various mistakes in functions of work with files. For work with files 70 function is used. Functions for work with memory are changed for use of the new manager of memory. git-svn-id: svn://kolibrios.org@610 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
144 B
C
10 lines
144 B
C
#include <mesys.h>
|
|
void debug_out_str(char* str)
|
|
{
|
|
while ((*str!='\0') || (*str!=0))
|
|
{
|
|
_msys_debug_out(*str);
|
|
str++;
|
|
}
|
|
}
|