[ft_putstr_fd] note

duckkuri·2020년 10월 16일
0

42Seoul_Libft_Story

목록 보기
9/22

[function] ft_putstr_fd

문자열 출력함수(줄바꿈 포함)

type

void ft_putstr_fd(char *s, int fd);

매개변수

  • char *s : 출력될 문자
  • int fd : 쓸 내용의 file descriptor

리턴값

void
  • None

사용 가능한 외부 함수

write

설명

  • 주어진 파일 디스크립터에s 문자열을 출력한다.

테스트

ft_putstr_fd("hello world!!",1);
ft_putstr_fd("good evening",1);
profile
😤 Today I Learned

0개의 댓글