blob: 5c4e0889c42bbabc68021d9d9ea140045b7808b0 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_CVT_H__
#define __AML_CVT_H__
#ifdef __cplusplus
extern "C" {
#endif
char *ecvt(double arg, int ndigits, int *decpt, int *sign);
char *my_fcvt(double arg, int ndigits, int *decpt, int *sign);
#ifdef __cplusplus
}
#endif
#endif