본문 바로가기
개발/C 언어

gsjava fopen_s 사용법 시큐어 코딩

by 철권 2020. 4. 6.
728x90

FILE *stream;
errno_t err;

   // Open for read (will fail if file "crt_fopen_s.c" does not exist)
   err  = fopen_s( &stream, "crt_fopen_s.c", "r" );
   if( err == 0 )
   {
      printf( "The file 'crt_fopen_s.c' was opened\n" );
   }
   else
   {
      printf( "The file 'crt_fopen_s.c' was not opened\n" );
   }

728x90
반응형