blob: 463140b298878283f3f2643c83bc03498fad084c [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_SNPRINTF_H__
#define __AML_SNPRINTF_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
int snprintf(char *str, size_t size, const char *format, ...);
#ifdef __cplusplus
}
#endif
#endif