C언어7 [C언어] 내장함수 비교 - memset, bzero C언어의 함수를 정리하는데 man 가이드를 참고했다. 그런데 man 가이드가 컴퓨터 환경별로 달랐다. Mac 터미널과 윈도우에서 띄운 Ubuntu 터미널의 내용이 다른 것을 알게 되었다. 따라서 내용을 복합적으로 종합하며 정리해본다. memset PROTOTYPE #include void *memset(void *b, int c, size_t len); NAME fill a byte string with a byte value (fill memory with a constant byte) DESCRIPTION - The memset() function writes len bytes of value c (converted to an unsigned char) to the string b. RETURN it.. 2020. 10. 6. [C언어] 내장함수 비교 - strcpy, strncpy, strlcpy C언어의 에 있는 str 관련 함수들은 공부해도 항상 헷갈린다. 필요한 순간마다 블로깅하여 확실하게 정리한다. man 가이드의 원문을 활용했다. cpy strcpy PROTOTYPE #include char *strcpy(char *dst, const char *src); DESCRIPTION - The strcpy() function copies the string src to dst (including the terminating `\0' character.) RETURN dst SECURITY CONSIDERATIONS - The strcpy() function copies the string src to dst (including the terminating `\0' character.) The .. 2020. 10. 1. 이전 1 2 다음