blob: 7c69c7160ff442154da8ff9798cb8493da79c5eb [file] [log] [blame]
Mingyang Sune5da4ad2019-12-19 15:15:48 +08001/*
2 * Copyright (c) 2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __UART_STDOUT_H__
9#define __UART_STDOUT_H__
10
11#include <stdint.h>
12
13/**
14 * \brief Output buffer by STDIO.
15 */
16int stdio_output_string(const unsigned char *str, uint32_t len);
17
18#endif /* __UART_STDOUT_H__ */