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