diff options
| author | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
| commit | 4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea (patch) | |
| tree | e25f459959a69578322529aca6d2a02cb2d3dfcf /ft_putstr_fd.c | |
| parent | 3c90d29fe5bf9ba6da090cd59c8c139d269f8bd4 (diff) | |
| download | libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.tar.gz libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.zip | |
Complete missing functions and add header
Diffstat (limited to 'ft_putstr_fd.c')
| -rw-r--r-- | ft_putstr_fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ft_putstr_fd.c b/ft_putstr_fd.c index 3be5a70..4dd472b 100644 --- a/ft_putstr_fd.c +++ b/ft_putstr_fd.c @@ -6,11 +6,11 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/06 20:43:05 by dkaiser #+# #+# */ -/* Updated: 2024/03/06 20:45:40 by dkaiser ### ########.fr */ +/* Updated: 2024/03/10 13:20:16 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ -#include <unistd.h> +#include "libft.h" void ft_putstr_fd(char *s, int fd) { |
