-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putstr_printf.c
More file actions
24 lines (22 loc) · 1.04 KB
/
ft_putstr_printf.c
File metadata and controls
24 lines (22 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_printf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pmolzer <pmolzer@student.42berlin.de> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/01 16:03:28 by pmolzer #+# #+# */
/* Updated: 2024/01/01 16:03:28 by pmolzer ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_putstr_printf(char *str, size_t *counter)
{
if (!str)
str = "(null)";
while (*str)
{
ft_putchar_printf(*str, counter);
str++;
}
}