man page에 검색해 보자. 소속 헤더파일: #include 함수 프로토타입: int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n); /* s1, s2는 비교할 문자열, n은 앞에서 부터 몇 번째 까지 비교할 건지 */ 함수 설명: The strcmp() and strncmp() functions lexicographically compare the null-terminated strings s1 and s2. strcmp()와 strncmp()함수는 사전순으로 문자열 s1, s2를 비교한다. The strncmp() function compares not more than n c..
CS 지식
man page에 검색해 보자. 소속 헤더파일: #include 함수 프로토타입: size_t strlcpy(char *restrict dst, const char *restrict src, size_t dstsize); /* dst는 복사한 것을 붙여넣을 문자열, src는 복사되는 문자열, dstsize는 붙여넣고 난 후의 dst 길이 */ size_t strlcat(char * restrict dst, const char *restrict src, size_t dstsize); /* dst는 원래 문자열, src는 추가되는 문자열, dstsize는 추가하고 난 후의 dst 길이 */ 함수 설명: The strlcpy() and strlcat() function copy and concatenate s..
char*ft_strcpy(char *dest, char *src) { intcount; count = 0; while (src[count]) { dest[count] = src[count]; count++; } dest[count] = '\0'; return (dest); } man page에 검색해 보자. 소속 헤더파일 : #include 함수 프로토타입: char *strcpy(char *dst, const char *src); /* dst는 복사한 것을 붙여넣을 문자열, src는 복사되는 문자열 */ char *strncpy(char *dst, const char *src, size_t len); /* dst는 복사한 것을 붙여넣을 문자열, src는 복사되는 문자열, len은 복사할 길이 */ 함..