11 lines
230 B
C
11 lines
230 B
C
#ifndef HOS_PRINTF_H
|
|
#define HOS_PRINTF_H
|
|
|
|
#include "stream.h"
|
|
#include <stdarg.h>
|
|
|
|
void hos_vprintf(const stream_t * stream, const char * fmt, va_list va);
|
|
void hos_printf(const stream_t * stream, const char * fmt, ...);
|
|
|
|
#endif
|