Subversion Repositories HelenOS

Rev

Rev 2329 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2329 Rev 2354
Line 79... Line 79...
79
    printf_core(fmt, &ps, args);
79
    printf_core(fmt, &ps, args);
80
 
80
 
81
    va_end(args);
81
    va_end(args);
82
}
82
}
83
 
83
 
-
 
84
/** Prints a string.
-
 
85
 *
-
 
86
 * @param str String to print
-
 
87
 */
-
 
88
void debug_puts(const char *str)
-
 
89
{
-
 
90
    while ( *str ) {
-
 
91
        putc(*str);
-
 
92
        str++;
-
 
93
    }
-
 
94
}
-
 
95
 
84
/** @}
96
/** @}
85
 */
97
 */