Subversion Repositories HelenOS

Rev

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

Rev 2354 Rev 2357
Line 28... Line 28...
28
 
28
 
29
/** @addtogroup arm32
29
/** @addtogroup arm32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
-
 
33
 *  @brief Debug print functions.
33
 */
34
 */
34
 
35
 
35
 
36
 
36
#include <printf/printf_core.h>
37
#include <printf/printf_core.h>
37
#include <arch/debug/print.h>
38
#include <arch/debug/print.h>
Line 81... Line 82...
81
    va_end(args);
82
    va_end(args);
82
}
83
}
83
 
84
 
84
/** Prints a string.
85
/** Prints a string.
85
 *
86
 *
86
 * @param str String to print
87
 * @param str String to print.
87
 */
88
 */
88
void debug_puts(const char *str)
89
void debug_puts(const char *str)
89
{
90
{
90
    while ( *str ) {
91
    while ( *str ) {
91
        putc(*str);
92
        putc(*str);