digits_to_words: add print_digit_words

This commit is contained in:
Aleksei Chubukov 2023-12-03 17:27:39 +04:00
parent 688ae7cb29
commit a225cd3249
2 changed files with 9 additions and 2 deletions

View File

@ -6,7 +6,12 @@
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/02 23:40:54 by achubuko #+# #+# */
/* Updated: 2023/12/02 23:43:18 by achubuko ### ########.fr */
/* Updated: 2023/12/03 17:26:57 by achubuko ### ########.fr */
/* */
/* ************************************************************************** */
#include "digits_to_words.h"
void print_digit_words(char *str)
{
}

View File

@ -6,9 +6,11 @@
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/02 23:35:43 by achubuko #+# #+# */
/* Updated: 2023/12/02 23:36:29 by achubuko ### ########.fr */
/* Updated: 2023/12/03 17:26:46 by achubuko ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DIGITS_TO_WORDS_H
# define DIGITS_TO_WORDS_H
void print_digit_words(char *str);
#endif