blob: 243e4d8723b1655f5289111c3ecf8745b0c961e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Assignment name : ft_putstr
Expected files : ft_putstr.c
Allowed functions: write
--------------------------------------------------------------------------------
Write a function that displays a string on the standard output.
The pointer passed to the function contains the address of the string's first
character.
Your function must be declared as follows:
void ft_putstr(char *str);
|