blob: 7c7c5dead0709510a65cc0c3ba14519d406eb3cd [file] [log] [blame]
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08001/*
yang.lib06e0a82022-01-10 17:35:09 +08002 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08003 *
yang.lib06e0a82022-01-10 17:35:09 +08004 * SPDX-License-Identifier: MIT
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +08005 */
6
7#ifndef __AML_PRINTF_H__
8#define __AML_PRINTF_H__
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
xiaohu.huang1fd6f112022-05-24 11:02:05 +080014int printf(const char *fmt, ...);
xiaohu.huang9169c492022-11-18 16:30:06 +080015
xiaohu.huang1fd6f112022-05-24 11:02:05 +080016int iprintf(const char *fmt, ...);
xiaohu.huang9169c492022-11-18 16:30:06 +080017
18int puts(const char *str);
Xiaohu.Huang60a7f2f2021-10-25 15:40:57 +080019
20#ifdef __cplusplus
21}
22#endif
23
xiaohu.huang7973d352022-11-15 17:51:53 +080024#endif