- The documentation on the header allow u to see on the files where the header is inclued
19 lines
998 B
C
19 lines
998 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/09 13:58:46 by rparodi #+# #+# */
|
|
/* Updated: 2025/09/05 16:23:43 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "str.h"
|
|
#include <unistd.h>
|
|
|
|
void ft_putstr_fd(char *s, int fd)
|
|
{
|
|
write(fd, s, ft_strlen(s));
|
|
}
|