-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putstr.c
More file actions
24 lines (22 loc) · 1010 Bytes
/
ft_putstr.c
File metadata and controls
24 lines (22 loc) · 1010 Bytes
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.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yyefimov <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/11 11:45:05 by yyefimov #+# #+# */
/* Updated: 2016/12/06 10:08:03 by yyefimov ### ########.fr */
/* */
/* ************************************************************************** */
#include "printf.h"
void ft_putstr(char const *s)
{
if (!s)
return ;
while (*s)
{
ft_putchar(*s);
s++;
}
}