-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_ftoa_base.c
executable file
·18 lines (16 loc) · 1.03 KB
/
ft_ftoa_base.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ftoa_base.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/18 12:41:09 by akharrou #+# #+# */
/* Updated: 2019/05/06 19:08:34 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/stdlib_42.h"
char *ft_ftoa_base(float n, char *base, int width, int precision)
{
return (ft_dtoa_base((double)n, base, width, precision));
}