일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 와인 고르기
- 지베르니
- 에꼴42
- ecole42
- get_next_line
- push swap
- 와인선별방법
- printf
- 지베르니 가을
- 42 libft
- 42 so_long
- libft
- 42
- 굿노트 스티커
- pipex 42
- 포르투갈 여행
- 알고리즘 기초
- 서울42
- 지베르니 계절 추천
- so_long
- 이지젯
- 파리 피크닉
- 42 pipex
- push swap 설명
- ft_printf
- 지베르니 여름
- get next line
- gnl
- pipex
- str함수
- Today
- Total
목록42 libft (2)
뇌 마음 반반저장소
본격적으로 들어가기에 앞서 두 함수를 살펴보자. strlcpy와 strlcat는 굉장히 비슷하지만 조금 다른 함수이다. 그래서 매뉴얼에서도 같이 묶어서 설명한다. 한번 매뉴얼을 살펴보자. Lb libbsd 라이브러리 포함 (이것은 나중에 내장 함수랑 비교해서 테스트할 때 컴파일이 안된다. 해결은 아래에.) strlcpy strlcat - size-bounded string copying and concatenation 크기를 조정해 문자열 복사 및 연결. The Fn strlcpy and Fn strlcat functions copy and concatenate strings respectively. They are designed to be safer, more consistent, and less e..
자, 그러면 본격적으로 libft를 시작해 보겠다! libft는 평소 흔하게 쓰이는 함수들을 직접 만들어서 두고두고 사용할 수 있는 라이브러리를 만드는 것이다. 일단 챕터 3, Mandatory part의 part1을 훑어보자. Chapter III Program name : libft.a Turn in files : Makefile, libft.h, ft_*.c Makefile : NAME, all, clean, fclean, re External functs. : Detailed below Libft authorized : n/a (해당 사항 없음) Description : Write your own library: a collection of functions that will be a useful..