[Libft] Part 2
libft 프로젝트의 part1 함수들을 구현하면서 메모했던 내용들을 정리해두었다. 이 라이브러리의 함수들은 꾸준히 업데이트 되고 있기 때문에 가장 최신의 코드는 여기 깃헙저장소를 참고...
1. ft_substr
Prototype
Parameters
1. The string from which to create the substring.
2. The start index of the substring in the string ’s’.
3. The maximum length of the substring.
Return value
External functs.
Description
Source
2. ft_strjoin
Prototype
Parameters
1. The prefix string.
2. The suffix string.
Return value
External functs.
Description
Source
3. ft_strtrim
Prototype char
Parameters
1. The string to be trimmed.
2. The reference set of characters to trim.
Return value
External functs.
Description
Source
4. ft_split
Prototype
Parameters
1. The string to be split.
2. The delimiter character.
Return value
External functs.
Description
Source
5. ft_itoa
Prototype
Parameters
1. the integer to convert.
Return value
External functs.
Description
Source
6. ft_strmapi
Prototype
Parameters
1. The string on which to iterate.
2. The function to apply to each character.
Return value
External functs.
Description
Source
7. ft_putchar_fd
Prototype
Parameters
1. The character to output.
2. The file descriptor on which to write.
Return value
External functs.
Description
Source
8. ft_putstr_fd
Prototype
Parameters
1. The string to output.
2. The file descriptor on which to write.
External functs.
Description
Source
9. ft_putendl_fd
Prototype
Parameters
1. The string to output.
2. The file descriptor on which to write.
External functs.
Description
Source
10. ft_putnbr_fd
Prototype
Parameters
1. The integer to output.
2. The file descriptor on which to write.
External functs.
Description
Source
Last updated