C언어/C언어 예제

[C언어 소스] strcat_s 함수 사용 예제 (문자열 합치기, 버퍼 오버플로우 방지)

언제나휴일 2016. 5. 4. 07:23
반응형

[C언어 소스] strcat_s 함수 사용 예제 (문자열 합치기, 버퍼 오버플로우 방지)


//C언어 표준 라이브러리 함수 사용법 가이드

//erron_t  strcat_s ( char * dest,size_t size, const char * source ); 문자열을 합하는 함수

//문자열을 합한 후에 합한 문자열 출력

 

#include <assert.h>

#include <string.h>

#include <stdio.h>

 

void ehstrcat_s(char *dest,size_t size, const char *source)

{

    int len = strlen(dest);//dest 문자열 길이 계산

    assert(size > (len + strlen(source)));//size dest 문자열 길이 + source 문자열 길이보다 커야 함

    strcpy_s(dest + len,size-len, source);//dest+len 위치에 source 문자열 복사   

}

void main(void)

{

    char stra[100] = "1234";

    char strb[10] = "56789";

    char strc[100] = "1234";

    char strd[10] = "abcd";

 

    //strcat 함수 이용

    printf("%s + %s =", stra, strb);

    strcat_s(stra, sizeof(stra), strb);

    printf("%s\n", stra);

 

    //ehstrcat 함수 이용

    printf("%s + %s =", strc, strd);

    ehstrcat_s(strc,sizeof(strc), strd);

    printf("%s\n", strc);

}

 

출력

1234 + 56789 = 123456789

1234 + abcd = 1234abcd


언제나 휴일 티스토리 바로가기

언제나 휴일 유튜브 채널 바로가기

반응형