23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ntow.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/02 20:26:44 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/02 20:29:01 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_ntow.h"
|
|
#include "ft_linked_list.h"
|
|
#include <stdio.h>
|
|
|
|
char *num_to_words(t_map_entry *map)
|
|
{
|
|
(void)map;
|
|
printf("%s\n", ll_map_get_value(map, "17"));
|
|
return ("one hundred");
|
|
}
|