Libft(23) - strdup
2021. 6. 26. 20:58ㆍ42seoul/42 Cursus
Libft(23) - strdup
STRDUP(3) BSD Library Functions Manual STRDUP(3)
NAME
strdup, strndup -- save a copy of a string
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <string.h>
char *
strdup(const char *s1);
char *
strndup(const char *s1, size_t n);
DESCRIPTION
The strdup() function allocates sufficient memory for a copy of the string s1, does the
copy, and returns a pointer to it. The pointer may subsequently be used as an argument to
the function free(3).
If insufficient memory is available, NULL is returned and errno is set to ENOMEM.
The strndup() function copies at most n characters from the string s1 always NUL terminat-
ing the copied string.
SEE ALSO
free(3), malloc(3)
HISTORY
The strdup() function first appeared in 4.4BSD. The strndup() function was added in
FreeBSD 7.2.
BSD December 5, 2008 BSD
- 문자열이므로 '\0'을 고려하여 strlen + 1 만큼의 크기로 메모리 할당
- 하나씩 복사한 후 마지막에 널 추가!
'42seoul > 42 Cursus' 카테고리의 다른 글
Libft(23) - calloc (0) | 2021.06.26 |
---|---|
Libft(22) - tolower (0) | 2021.06.26 |
Libft(21) - toupper (0) | 2021.06.26 |
Libft(20) - isprint (0) | 2021.06.26 |
Libft(19) - isascii (0) | 2021.06.26 |