Code 42/libft
ft_substr // ft_strjoin // ft_strmpai
** calloc : https://42kchoi.tistory.com/9 char *ft_substr(char const *s, unsigned int start, size_t len); 이 함수는 s라는 문자열 내에서 start 번째부터 len 개 만큼의 문자를 어떤 문자열(substr)에 담아 리턴하는 함수다. malloc이 필요하다. =================================================================== char *ft_strjoin(char const *s1, char const *s2); 이 함수는 s1과 s2를 합친 문자열을 리턴하는 함수다. ft_memcpy를 쓰면 편하다. Null terminating이 되어있어야 한다. =========..
2020. 2. 27. 07:49
최근댓글