mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-09-08 02:15:29 +02:00
18 lines
384 B
C
18 lines
384 B
C
/*
|
|
* Copyright (C) 2017-2020 Alibaba Group Holding Limited
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __MINI_PRINTF
|
|
#define __MINI_PRINTF
|
|
#include <common.h>
|
|
|
|
|
|
void mini_putc(const char c);
|
|
void mini_puts(const char *s);
|
|
int mini_printf(const char *fmt, ...) __attribute__((format(__printf__, 1, 2)));
|
|
int mini_vprintf(const char *fmt, va_list args);
|
|
|
|
#endif
|