20 lines
1015 B
C
20 lines
1015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* ftpfretfloat.c :+: :+: */
|
|
/* +:+ */
|
|
/* By: houtworm <codam@houtworm.net> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2023/10/26 18:40:49 by houtworm #+# #+# */
|
|
/* Updated: 2023/10/26 18:40:49 by houtworm ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../tmp/ft_printf.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
alarm(5);
|
|
return (ft_printf(argv[1], atof(argv[2])));
|
|
}
|