libc/stream: provide lowerout_stream default initialization function
Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
This commit is contained in:
parent
b58cd6ad34
commit
0c95bf73dc
@ -309,6 +309,8 @@ extern "C"
|
|||||||
# define EXTERN extern
|
# define EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern struct lib_outstream_s g_lowoutstream;
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Function Prototypes
|
* Public Function Prototypes
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -33,6 +33,26 @@
|
|||||||
|
|
||||||
#include "libc.h"
|
#include "libc.h"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Private Functions Prototypes
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
static void lowoutstream_putc(FAR struct lib_outstream_s *self, int ch);
|
||||||
|
static int lowoutstream_puts(FAR struct lib_outstream_s *self,
|
||||||
|
FAR const void *buf, int len);
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Data
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
struct lib_outstream_s g_lowoutstream =
|
||||||
|
{
|
||||||
|
0,
|
||||||
|
lowoutstream_putc,
|
||||||
|
lowoutstream_puts,
|
||||||
|
lib_noflush
|
||||||
|
};
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Functions
|
* Private Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user