-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_total.c
22 lines (20 loc) · 1.05 KB
/
print_total.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* print_total.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Alex <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/08 14:55:52 by alex #+# #+# */
/* Updated: 2020/05/05 16:11:25 by Alex ### ########.fr */
/* */
/* ************************************************************************** */
#include "./includes/lem_in.h"
void print_total(char const *str, int number)
{
ft_putstr("#\n# Total ");
ft_putstr(str);
ft_putstr(": ");
ft_putnbr(number);
ft_putstr("\n#\n");
}