20 lines
1020 B
C
20 lines
1020 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ntow.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/02 20:21:19 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/02 20:32:16 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_NTOW_H
|
|
# define FT_NTOW_H
|
|
# include "ft_linked_list.h"
|
|
|
|
char *num_to_words(char *str_nbr, t_map_entry *map);
|
|
|
|
#endif
|