STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Macros | Typedefs | Functions | Variables
stdio.h File Reference
#include <crtdefs.h>
#include <swprintf.inl>

Go to the source code of this file.

Classes

struct  _iobuf
 

Macros

#define _INC_STDIO
 
#define BUFSIZ   512
 
#define _NFILE   _NSTREAM_
 
#define _NSTREAM_   512
 
#define _IOB_ENTRIES   20
 
#define EOF   (-1)
 
#define _FILE_DEFINED
 
#define _P_tmpdir   "\\"
 
#define _wP_tmpdir   L"\\"
 
#define L_tmpnam   (sizeof(_P_tmpdir) + 12)
 
#define L_tmpnam_s   (sizeof(_P_tmpdir) + 16)
 
#define SEEK_CUR   1
 
#define SEEK_END   2
 
#define SEEK_SET   0
 
#define FILENAME_MAX   260
 
#define FOPEN_MAX   20
 
#define _SYS_OPEN   20
 
#define TMP_MAX   32767 /* SHRT_MAX */
 
#define TMP_MAX_S   _TMP_MAX_S
 
#define _TMP_MAX_S   2147483647 /* INT_MAX */
 
#define NULL   ((void *)0)
 
#define _FPOS_T_DEFINED
 
#define stdin   (&__iob_func()[0])
 
#define stdout   (&__iob_func()[1])
 
#define stderr   (&__iob_func()[2])
 
#define _STDSTREAM_DEFINED
 
#define _IOREAD   0x0001
 
#define _IOWRT   0x0002
 
#define _IOFBF   0x0000
 
#define _IOLBF   0x0040
 
#define _IONBF   0x0004
 
#define _IOMYBUF   0x0008
 
#define _IOEOF   0x0010
 
#define _IOERR   0x0020
 
#define _IOSTRG   0x0040
 
#define _IORW   0x0080
 
#define _TWO_DIGIT_EXPONENT   0x1
 
#define _CRT_PERROR_DEFINED
 
#define _CRT_DIRECTORY_DEFINED
 
#define WEOF   (wint_t)(0xFFFF)
 
#define _SWPRINTFS_DEPRECATED   _CRT_DEPRECATE_TEXT("swprintf has been changed to conform with the ISO C standard, adding an extra character count parameter. To use traditional Microsoft swprintf, set _CRT_NON_CONFORMING_SWPRINTFS.")
 
#define _CRT_WPERROR_DEFINED
 
#define getwchar()   fgetwc(stdin)
 
#define putwchar(_c)   fputwc((_c),stdout)
 
#define getwc(_stm)   fgetwc(_stm)
 
#define putwc(_c, _stm)   fputwc(_c,_stm)
 
#define _putwc_nolock(_c, _stm)   _fputwc_nolock(_c,_stm)
 
#define _getwc_nolock(_stm)   _fgetwc_nolock(_stm)
 
#define _WSTDIO_DEFINED
 
#define _STDIO_DEFINED
 
#define _fgetc_nolock(_stream)   (--(_stream)->_cnt >= 0 ? 0xff & *(_stream)->_ptr++ : _filbuf(_stream))
 
#define _fputc_nolock(_c, _stream)   (--(_stream)->_cnt >= 0 ? 0xff & (*(_stream)->_ptr++ = (char)(_c)) : _flsbuf((_c),(_stream)))
 
#define _getc_nolock(_stream)   _fgetc_nolock(_stream)
 
#define _putc_nolock(_c, _stream)   _fputc_nolock(_c, _stream)
 
#define _getchar_nolock()   _getc_nolock(stdin)
 
#define _putchar_nolock(_c)   _putc_nolock((_c),stdout)
 
#define _getwchar_nolock()   _getwc_nolock(stdin)
 
#define _putwchar_nolock(_c)   _putwc_nolock((_c),stdout)
 
#define P_tmpdir   _P_tmpdir
 
#define SYS_OPEN   _SYS_OPEN
 

Typedefs

typedef struct _iobuf FILE
 
typedef __int64 fpos_t
 

Functions

_CRTIMP FILE *__cdecl __iob_func (void)
 
_Check_return_ _CRTIMP int __cdecl _filbuf (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _flsbuf (_In_ int _Ch, _Inout_ FILE *_File)
 
_Check_return_ _CRTIMP FILE *__cdecl _fsopen (_In_z_ const char *_Filename, _In_z_ const char *_Mode, _In_ int _ShFlag)
 
_CRTIMP void __cdecl clearerr (_Inout_ FILE *_File)
 
_Check_return_wat_ _CRTIMP errno_t __cdecl clearerr_s (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl fclose (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fcloseall (void)
 
_Check_return_ _CRTIMP FILE *__cdecl _fdopen (_In_ int _FileHandle, _In_z_ const char *_Mode)
 
_Check_return_ _CRTIMP int __cdecl feof (_In_ FILE *_File)
 
_Check_return_ _CRTIMP int __cdecl ferror (_In_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl fflush (_Inout_opt_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl fgetc (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fgetchar (void)
 
_Check_return_opt_ _CRTIMP int __cdecl fgetpos (_Inout_ FILE *_File, _Out_ fpos_t *_Pos)
 
_Check_return_opt_ _CRTIMP char *__cdecl fgets (_Out_writes_z_(_MaxCount) char *_Buf, _In_ int _MaxCount, _Inout_ FILE *_File)
 
_Check_return_ _CRTIMP int __cdecl _fileno (_In_ FILE *_File)
 
_Check_return_ _CRTIMP char *__cdecl _tempnam (_In_opt_z_ const char *_DirName, _In_opt_z_ const char *_FilePrefix)
 
_Check_return_opt_ _CRTIMP int __cdecl _flushall (void)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (fopen_s) _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename
 
_Check_return_wat_ _CRTIMP errno_t __cdecl fopen_s (_Outptr_result_maybenull_ FILE **_File, _In_z_ const char *_Filename, _In_z_ const char *_Mode)
 
_Check_return_opt_ _CRTIMP int __cdecl fprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl fprintf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl fputc (_In_ int _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fputchar (_In_ int _Ch)
 
_Check_return_opt_ _CRTIMP int __cdecl fputs (_In_z_ const char *_Str, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl fread (_Out_writes_bytes_(_ElementSize *_Count) void *_DstBuf, _In_ size_t _ElementSize, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl fread_s (_Out_writes_bytes_(_ElementSize *_Count) void *_DstBuf, _In_ size_t _DstSize, _In_ size_t _ElementSize, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (freopen_s) _CRTIMP FILE *__cdecl freopen(_In_z_ const char *_Filename
 
_Check_return_wat_ _CRTIMP errno_t __cdecl freopen_s (_Outptr_result_maybenull_ FILE **_File, _In_z_ const char *_Filename, _In_z_ const char *_Mode, _Inout_ FILE *_OldFile)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (fscanf_s) _CRTIMP int __cdecl fscanf(_Inout_ FILE *_File
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_fscanf_s_l) _CRTIMP int __cdecl _fscanf_l(_Inout_ FILE *_File
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _In_z_ _Scanf_format_string_params_ (0) const char *_Format
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl fscanf_s (_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fscanf_s_l (_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl fsetpos (_Inout_ FILE *_File, _In_ const fpos_t *_Pos)
 
_Check_return_opt_ _CRTIMP int __cdecl fseek (_Inout_ FILE *_File, _In_ long _Offset, _In_ int _Origin)
 
_Check_return_ _CRTIMP long __cdecl ftell (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fseeki64 (_Inout_ FILE *_File, _In_ __int64 _Offset, _In_ int _Origin)
 
_Check_return_ _CRTIMP __int64 __cdecl _ftelli64 (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl fwrite (_In_reads_bytes_(_Size *_Count) const void *_Str, _In_ size_t _Size, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_ _CRTIMP int __cdecl getc (_Inout_ FILE *_File)
 
_Check_return_ _CRTIMP int __cdecl getchar (void)
 
_Check_return_ _CRTIMP int __cdecl _getmaxstdio (void)
 
_CRTIMP char *__cdecl gets_s (_Out_writes_z_(_Size) char *_Buf, _In_ rsize_t _Size)
 
 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_0 (char *, __RETURN_POLICY_SAME, _CRTIMP, gets, _Pre_notnull_ _Post_z_ _Out_writes_z_(((size_t)-1)), char, _Buffer) _Check_return_ int __cdecl _getw(_Inout_ FILE *_File)
 
_CRTIMP void __cdecl perror (_In_opt_z_ const char *_ErrMsg)
 
_Check_return_opt_ _CRTIMP int __cdecl _pclose (_Inout_ FILE *_File)
 
_Check_return_ _CRTIMP FILE *__cdecl _popen (_In_z_ const char *_Command, _In_z_ const char *_Mode)
 
_Check_return_opt_ _CRTIMP int __cdecl printf (_In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl printf_s (_In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl putc (_In_ int _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl putchar (_In_ int _Ch)
 
_Check_return_opt_ _CRTIMP int __cdecl puts (_In_z_ const char *_Str)
 
_Check_return_opt_ _CRTIMP int __cdecl _putw (_In_ int _Word, _Inout_ FILE *_File)
 
_CRTIMP int __cdecl remove (_In_z_ const char *_Filename)
 
_Check_return_ _CRTIMP int __cdecl rename (_In_z_ const char *_OldFilename, _In_z_ const char *_NewFilename)
 
_CRTIMP int __cdecl _unlink (_In_z_ const char *_Filename)
 
 _CRT_NONSTDC_DEPRECATE (_unlink) _CRTIMP int __cdecl unlink(_In_z_ const char *_Filename)
 
_CRTIMP void __cdecl rewind (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _rmtmp (void)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (scanf_s) _CRTIMP int __cdecl scanf(_In_z_ _Scanf_format_string_ const char *_Format
 
_Check_return_ _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_scanf_s_l) _CRTIMP int __cdecl _scanf_l(_In_z_ _Scanf_format_string_params_(0) const char *_Format
 
_Check_return_ _Check_return_opt_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl scanf_s (_In_z_ _Scanf_s_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _scanf_s_l (_In_z_ _Scanf_s_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
 _CRT_INSECURE_DEPRECATE (setvbuf) _CRTIMP void __cdecl setbuf(_Inout_ FILE *_File
 
 _Inout_updates_opt_ (BUFSIZ) _Post_readable_size_(0) char *_Buffer)
 
_Check_return_opt_ _CRTIMP int __cdecl _setmaxstdio (_In_ int _Max)
 
_Check_return_opt_ _CRTIMP unsigned int __cdecl _set_output_format (_In_ unsigned int _Format)
 
_Check_return_opt_ _CRTIMP unsigned int __cdecl _get_output_format (void)
 
_Check_return_opt_ _CRTIMP int __cdecl setvbuf (_Inout_ FILE *_File, _Inout_updates_opt_z_(_Size) char *_Buf, _In_ int _Mode, _In_ size_t _Size)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snprintf_s (_Out_writes_z_(_SizeInBytes) char *_DstBuf, _In_ size_t _SizeInBytes, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl sprintf_s (_Out_writes_z_(_SizeInBytes) char *_DstBuf, _In_ size_t _SizeInBytes, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _scprintf (_In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (sscanf_s) _CRTIMP int __cdecl sscanf(_In_z_ const char *_Src
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_sscanf_s_l) _CRTIMP int __cdecl _sscanf_l(_In_z_ const char *_Src
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl sscanf_s (_In_z_ const char *_Src, _In_z_ _Scanf_s_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _sscanf_s_l (_In_z_ const char *_Src, _In_z_ _Scanf_s_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snscanf_s) _CRTIMP int __cdecl _snscanf(_In_reads_bytes_(_MaxCount) _Pre_z_ const char *_Src
 
_Check_return_opt_ _In_ size_t _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snscanf_s_l) _CRTIMP int __cdecl _snscanf_l(_In_reads_bytes_(_MaxCount) _Pre_z_ const char *_Src
 
_Check_return_opt_ _In_ size_t _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snscanf_s (_In_reads_bytes_(_MaxCount) _Pre_z_ const char *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snscanf_s_l (_In_reads_bytes_(_MaxCount) _Pre_z_ const char *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (tmpfile_s) _CRTIMP FILE *__cdecl tmpfile(void)
 
_Check_return_wat_ _CRTIMP errno_t __cdecl tmpfile_s (_Out_opt_ _Deref_post_valid_ FILE **_File)
 
_Check_return_wat_ _CRTIMP errno_t __cdecl tmpnam_s (_Out_writes_z_(_Size) char *_Buf, _In_ rsize_t _Size)
 
_Check_return_opt_ _CRTIMP int __cdecl ungetc (_In_ int _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl vfprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfscanf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfprintf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfscanf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vprintf (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vscanf (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vprintf_s (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vscanf_s (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (vsnprintf_s) _CRTIMP int __cdecl vsnprintf(_Out_writes_(_MaxCount) char *_DstBuf
 
_Check_return_opt_ _CRTIMP int __cdecl vsnprintf_s (_Out_writes_z_(_DstSize) char *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnprintf_s (_Out_writes_z_(_SizeInBytes) char *_DstBuf, _In_ size_t _SizeInBytes, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_CRTIMP_ALTERNATIVE int __cdecl vsprintf_s (_Out_writes_z_(_SizeInBytes) char *_DstBuf, _In_ size_t _SizeInBytes, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl vsscanf_s (const char *_Src, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vsscanf (const char *_srcBuf, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _vscprintf (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _snprintf_c (_Out_writes_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_c (_Out_writes_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _printf_p (_In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _sprintf_p (_Out_writes_z_(_MaxCount) char *_Dst, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_p (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vsprintf_p (_Out_writes_z_(_MaxCount) char *_Dst, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _scprintf_p (_In_z_ _Printf_format_string_ const char *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _vscprintf_p (_In_z_ _Printf_format_string_ const char *_Format, va_list _ArgList)
 
_CRTIMP int __cdecl _set_printf_count_output (_In_ int _Value)
 
_CRTIMP int __cdecl _get_printf_count_output (void)
 
_Check_return_opt_ _CRTIMP int __cdecl _printf_l (_In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _printf_p_l (_In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _printf_s_l (_In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_l (_In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_p_l (_In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_s_l (_In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_p_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_s_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_l (_Inout_ FILE *_File, _In_z_ const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_p_l (_Inout_ FILE *_File, _In_z_ const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_s_l (_Inout_ FILE *_File, _In_z_ const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_sprintf_s_l) _CRTIMP int __cdecl _sprintf_l(_Pre_notnull_ _Post_z_ char *_DstBuf
 
_Check_return_opt_ _In_z_ _Printf_format_string_params_ (0) const char *_Format
 
_Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl _sprintf_p_l (_Out_writes_z_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _sprintf_s_l (_Out_writes_z_(_DstSize) char *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_vsprintf_s_l) _CRTIMP int __cdecl _vsprintf_l(_Pre_notnull_ _Post_z_ char *_DstBuf
 
_Check_return_opt_ _CRTIMP int __cdecl _vsprintf_p_l (_Out_writes_z_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsprintf_s_l (_Out_writes_z_(_DstSize) char *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _scprintf_l (_In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _scprintf_p_l (_In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vscprintf_l (_In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vscprintf_p_l (_In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snprintf_s_l) _CRTIMP int __cdecl _snprintf_l(_Out_writes_(_MaxCount) char *_DstBuf
 
_Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl _snprintf_c_l (_Out_writes_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snprintf_s_l (_Out_writes_z_(_DstSize) char *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const char *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_vsnprintf_s_l) _CRTIMP int __cdecl _vsnprintf_l(_Out_writes_(_MaxCount) char *_DstBuf
 
_Check_return_opt_ _In_ size_t _In_z_ _Printf_format_string_params_ (2) const char *_Format
 
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_c_l (_Out_writes_(_MaxCount) char *_DstBuf, _In_ size_t _MaxCount, const char *, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_s_l (_Out_writes_z_(_DstSize) char *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const char *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfsopen (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _In_ int _ShFlag)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl fgetwc (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwchar (void)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl fputwc (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwchar (_In_ wchar_t _Ch)
 
_Check_return_ _CRTIMP wint_t __cdecl getwc (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl putwc (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl putwchar (_In_ wchar_t _Ch)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl ungetwc (_In_ wint_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wchar_t *__cdecl fgetws (_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ int _SizeInWords, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl fputws (_In_z_ const wchar_t *_Str, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wchar_t *__cdecl _getws_s (_Out_writes_z_(_SizeInWords) wchar_t *_Str, _In_ size_t _SizeInWords)
 
_Check_return_opt_ _CRTIMP int __cdecl _putws (_In_z_ const wchar_t *_Str)
 
_Check_return_opt_ _CRTIMP int __cdecl fwprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl fwprintf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl wprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl wprintf_s (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf_s (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vwscanf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vwprintf_s (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vwscanf_s (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_CRTIMP_ALTERNATIVE int __cdecl swprintf_s (_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_CRTIMP_ALTERNATIVE int __cdecl vswprintf_s (_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl vswscanf_s (const wchar_t *_Src, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vswscanf (const wchar_t *_srcBuf, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_l (_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p_l (_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_s_l (_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_l (_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p_l (_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_s_l (_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_s_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_s_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swprintf_s_l (_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vswprintf_s_l (_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_l (_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_p_l (_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p_l (_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snwprintf_s_l) _CRTIMP int __cdecl _snwprintf_l(_Out_writes_(_MaxCount) wchar_t *_DstBuf
 
_Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s_l (_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_vsnwprintf_s_l) _CRTIMP int __cdecl _vsnwprintf_l(_Out_writes_(_MaxCount) wchar_t *_DstBuf
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s_l (_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wtempnam (_In_opt_z_ const wchar_t *_Directory, _In_opt_z_ const wchar_t *_FilePrefix)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_l (_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (fwscanf_s) _CRTIMP int __cdecl fwscanf(_Inout_ FILE *_File
 
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_fwscanf_s_l) _CRTIMP int __cdecl _fwscanf_l(_Inout_ FILE *_File
 
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl fwscanf_s (_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwscanf_s_l (_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (swscanf_s) _CRTIMP int __cdecl swscanf(_In_z_ const wchar_t *_Src
 
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_swscanf_s_l) _CRTIMP int __cdecl _swscanf_l(_In_z_ const wchar_t *_Src
 
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl swscanf_s (_In_z_ const wchar_t *_Src, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swscanf_s_l (_In_z_ const wchar_t *_Src, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snwscanf_s) _CRTIMP int __cdecl _snwscanf(_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src
 
_Check_return_opt_ _In_ size_t _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_snwscanf_s_l) _CRTIMP int __cdecl _snwscanf_l(_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src
 
_Check_return_opt_ _In_ size_t _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwscanf_s (_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwscanf_s_l (_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (wscanf_s) _CRTIMP int __cdecl wscanf(_In_z_ _Scanf_format_string_ const wchar_t *_Format
 
_Check_return_ _Check_return_opt_ _CRT_INSECURE_DEPRECATE (_wscanf_s_l) _CRTIMP int __cdecl _wscanf_l(_In_z_ _Scanf_format_string_params_(0) const wchar_t *_Format
 
_Check_return_ _Check_return_opt_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl wscanf_s (_In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _wscanf_s_l (_In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfdopen (_In_ int _FileHandle, _In_z_ const wchar_t *_Mode)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (_wfopen_s) _CRTIMP FILE *__cdecl _wfopen(_In_z_ const wchar_t *_Filename
 
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfopen_s (_Outptr_result_maybenull_ FILE **_File, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode)
 
_Check_return_ _CRT_INSECURE_DEPRECATE (_wfreopen_s) _CRTIMP FILE *__cdecl _wfreopen(_In_z_ const wchar_t *_Filename
 
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfreopen_s (_Outptr_result_maybenull_ FILE **_File, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _Inout_ FILE *_OldFile)
 
_CRTIMP void __cdecl _wperror (_In_opt_z_ const wchar_t *_ErrMsg)
 
_Check_return_ _CRTIMP FILE *__cdecl _wpopen (_In_z_ const wchar_t *_Command, _In_z_ const wchar_t *_Mode)
 
_CRTIMP int __cdecl _wremove (_In_z_ const wchar_t *_Filename)
 
_Check_return_wat_ _CRTIMP errno_t __cdecl _wtmpnam_s (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwc_nolock (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwc_nolock (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _ungetwc_nolock (_In_ wint_t _Ch, _Inout_ FILE *_File)
 
_CRTIMP void __cdecl _lock_file (_Inout_ FILE *_File)
 
_CRTIMP void __cdecl _unlock_file (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fclose_nolock (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fflush_nolock (_Inout_opt_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl _fread_nolock (_Out_writes_bytes_(_ElementSize *_Count) void *_DstBuf, _In_ size_t _ElementSize, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl _fread_nolock_s (_Out_writes_bytes_(_ElementSize *_Count) void *_DstBuf, _In_ size_t _DstSize, _In_ size_t _ElementSize, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fseek_nolock (_Inout_ FILE *_File, _In_ long _Offset, _In_ int _Origin)
 
_Check_return_ _CRTIMP long __cdecl _ftell_nolock (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _fseeki64_nolock (_Inout_ FILE *_File, _In_ __int64 _Offset, _In_ int _Origin)
 
_Check_return_ _CRTIMP __int64 __cdecl _ftelli64_nolock (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP size_t __cdecl _fwrite_nolock (_In_reads_bytes_(_Size *_Count) const void *_DstBuf, _In_ size_t _Size, _In_ size_t _Count, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl _ungetc_nolock (_In_ int _Ch, _Inout_ FILE *_File)
 
 _CRT_NONSTDC_DEPRECATE (_tempnam) _CRTIMP char *__cdecl tempnam(_In_opt_z_ const char *_Directory
 
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE (_fcloseall) _CRTIMP int __cdecl fcloseall(void)
 
_Check_return_ _CRT_NONSTDC_DEPRECATE (_fdopen) _CRTIMP FILE *__cdecl fdopen(_In_ int _FileHandle
 
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE (_fgetchar) _CRTIMP int __cdecl fgetchar(void)
 
_Check_return_ _CRT_NONSTDC_DEPRECATE (_fileno) _CRTIMP int __cdecl fileno(_In_ FILE *_File)
 
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE (_flushall) _CRTIMP int __cdecl flushall(void)
 
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE (_fputchar) _CRTIMP int __cdecl fputchar(_In_ int _Ch)
 
_Check_return_ _CRT_NONSTDC_DEPRECATE (_getw) _CRTIMP int __cdecl getw(_Inout_ FILE *_File)
 
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE (_putw) _CRTIMP int __cdecl putw(_In_ int _Ch
 
_Check_return_ _CRT_NONSTDC_DEPRECATE (_rmtmp) _CRTIMP int __cdecl rmtmp(void)
 

Variables

_Check_return_ _In_z_ const char * _Mode
 
_Check_return_ _In_z_ const char _Inout_ FILE_File
 
_Check_return_ _In_z_ _Scanf_format_string_ const char * _Format
 
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Locale
 
_Check_return_opt_ _In_ size_t _MaxCount
 
_Check_return_opt_ _In_ size_t _In_z_ _Printf_format_string_ const char va_list _ArgList
 
_Check_return_opt_ _In_z_ const char _In_opt_ _locale_t
 
_Check_return_ _In_z_ const wchar_t _Inout_ FILE_OldFile
 
_In_opt_z_ const char * _FilePrefix
 

Macro Definition Documentation

#define _CRT_DIRECTORY_DEFINED
#define _CRT_PERROR_DEFINED
#define _CRT_WPERROR_DEFINED
#define _fgetc_nolock (   _stream)    (--(_stream)->_cnt >= 0 ? 0xff & *(_stream)->_ptr++ : _filbuf(_stream))
#define _FILE_DEFINED
#define _FPOS_T_DEFINED
#define _fputc_nolock (   _c,
  _stream 
)    (--(_stream)->_cnt >= 0 ? 0xff & (*(_stream)->_ptr++ = (char)(_c)) : _flsbuf((_c),(_stream)))
#define _getc_nolock (   _stream)    _fgetc_nolock(_stream)
#define _getchar_nolock ( )    _getc_nolock(stdin)
#define _getwc_nolock (   _stm)    _fgetwc_nolock(_stm)
#define _getwchar_nolock ( )    _getwc_nolock(stdin)
#define _INC_STDIO
#define _IOB_ENTRIES   20
#define _IOEOF   0x0010
#define _IOERR   0x0020
#define _IOFBF   0x0000
#define _IOLBF   0x0040
#define _IOMYBUF   0x0008
#define _IONBF   0x0004
#define _IOREAD   0x0001
#define _IORW   0x0080
#define _IOSTRG   0x0040
#define _IOWRT   0x0002
#define _NFILE   _NSTREAM_
#define _NSTREAM_   512
#define _P_tmpdir   "\\"
#define _putc_nolock (   _c,
  _stream 
)    _fputc_nolock(_c, _stream)
#define _putchar_nolock (   _c)    _putc_nolock((_c),stdout)
#define _putwc_nolock (   _c,
  _stm 
)    _fputwc_nolock(_c,_stm)
#define _putwchar_nolock (   _c)    _putwc_nolock((_c),stdout)
#define _STDIO_DEFINED
#define _STDSTREAM_DEFINED
#define _SWPRINTFS_DEPRECATED   _CRT_DEPRECATE_TEXT("swprintf has been changed to conform with the ISO C standard, adding an extra character count parameter. To use traditional Microsoft swprintf, set _CRT_NON_CONFORMING_SWPRINTFS.")
#define _SYS_OPEN   20
#define _TMP_MAX_S   2147483647 /* INT_MAX */
#define _TWO_DIGIT_EXPONENT   0x1
#define _wP_tmpdir   L"\\"
#define _WSTDIO_DEFINED
#define BUFSIZ   512
#define EOF   (-1)
#define FILENAME_MAX   260
#define FOPEN_MAX   20
#define getwc (   _stm)    fgetwc(_stm)
_Check_return_ _CRTIMP wint_t __cdecl getwchar ( )    fgetwc(stdin)
#define L_tmpnam   (sizeof(_P_tmpdir) + 12)
#define L_tmpnam_s   (sizeof(_P_tmpdir) + 16)
#define NULL   ((void *)0)
#define P_tmpdir   _P_tmpdir
#define putwc (   _c,
  _stm 
)    fputwc(_c,_stm)
#define putwchar (   _c)    fputwc((_c),stdout)
#define SEEK_CUR   1
#define SEEK_END   2
#define SEEK_SET   0
#define stderr   (&__iob_func()[2])
#define stdin   (&__iob_func()[0])
#define stdout   (&__iob_func()[1])
#define SYS_OPEN   _SYS_OPEN
#define TMP_MAX   32767 /* SHRT_MAX */
#define TMP_MAX_S   _TMP_MAX_S
#define WEOF   (wint_t)(0xFFFF)

Typedef Documentation

typedef struct _iobuf FILE
typedef __int64 fpos_t

Function Documentation

__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_0 ( char *  ,
__RETURN_POLICY_SAME  ,
_CRTIMP  ,
gets  ,
_Pre_notnull_ _Post_z_   _Out_writes_z_((size_t)-1),
char  ,
_Buffer   
)
_CRTIMP FILE* __cdecl __iob_func ( void  )
_Check_return_ _CRT_INSECURE_DEPRECATE ( fopen_s  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( freopen_s  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( fscanf_s  )
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _fscanf_s_l  )
_Check_return_ _CRT_INSECURE_DEPRECATE ( scanf_s  ) const
_Check_return_ _Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _scanf_s_l  ) const
_CRT_INSECURE_DEPRECATE ( setvbuf  )
_Check_return_ _CRT_INSECURE_DEPRECATE ( sscanf_s  ) const
_Check_return_ _In_z_ _Scanf_format_string_ const char _Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _sscanf_s_l  ) const
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _snscanf_s  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( tmpfile_s  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( vsnprintf_s  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _sprintf_s_l  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _vsprintf_s_l  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _snprintf_s_l  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _vsnprintf_s_l  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _snwprintf_s_l  )
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _vsnwprintf_s_l  )
_Check_return_ _CRT_INSECURE_DEPRECATE ( fwscanf_s  )
_Check_return_ _CRT_INSECURE_DEPRECATE ( swscanf_s  ) const
_Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _snwscanf_s  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( wscanf_s  ) const
_Check_return_ _Check_return_opt_ _CRT_INSECURE_DEPRECATE ( _wscanf_s_l  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( _wfopen_s  ) const
_Check_return_ _CRT_INSECURE_DEPRECATE ( _wfreopen_s  ) const
_CRT_NONSTDC_DEPRECATE ( _unlink  ) const
_CRT_NONSTDC_DEPRECATE ( _tempnam  ) const
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE ( _fcloseall  )
_Check_return_ _CRT_NONSTDC_DEPRECATE ( _fdopen  )
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE ( _fgetchar  )
_Check_return_ _CRT_NONSTDC_DEPRECATE ( _fileno  )
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE ( _flushall  )
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE ( _fputchar  )
_Check_return_ _CRT_NONSTDC_DEPRECATE ( _getw  )
_Check_return_opt_ _CRT_NONSTDC_DEPRECATE ( _putw  )
_Check_return_ _CRT_NONSTDC_DEPRECATE ( _rmtmp  )
_Check_return_opt_ _CRTIMP int __cdecl _fclose_nolock ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _fcloseall ( void  )
_Check_return_ _CRTIMP FILE* __cdecl _fdopen ( _In_ int  _FileHandle,
_In_z_ const char *  _Mode 
)
_Check_return_opt_ _CRTIMP int __cdecl _fflush_nolock ( _Inout_opt_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _fgetchar ( void  )
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwc_nolock ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwchar ( void  )
_Check_return_ _CRTIMP int __cdecl _filbuf ( _Inout_ FILE _File)
_Check_return_ _CRTIMP int __cdecl _fileno ( _In_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _flsbuf ( _In_ int  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl _flushall ( void  )
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_p_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fprintf_s_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fputchar ( _In_ int  _Ch)
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwc_nolock ( _In_ wchar_t  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwchar ( _In_ wchar_t  _Ch)
_Check_return_opt_ _CRTIMP size_t __cdecl _fread_nolock ( _Out_writes_bytes_(_ElementSize *_Count) void _DstBuf,
_In_ size_t  _ElementSize,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP size_t __cdecl _fread_nolock_s ( _Out_writes_bytes_(_ElementSize *_Count) void _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _ElementSize,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl _fscanf_s_l ( _Inout_ FILE _File,
_In_z_ _Scanf_s_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fseek_nolock ( _Inout_ FILE _File,
_In_ long  _Offset,
_In_ int  _Origin 
)
_Check_return_opt_ _CRTIMP int __cdecl _fseeki64 ( _Inout_ FILE _File,
_In_ __int64  _Offset,
_In_ int  _Origin 
)
_Check_return_opt_ _CRTIMP int __cdecl _fseeki64_nolock ( _Inout_ FILE _File,
_In_ __int64  _Offset,
_In_ int  _Origin 
)
_Check_return_ _CRTIMP FILE* __cdecl _fsopen ( _In_z_ const char *  _Filename,
_In_z_ const char *  _Mode,
_In_ int  _ShFlag 
)
_Check_return_ _CRTIMP long __cdecl _ftell_nolock ( _Inout_ FILE _File)
_Check_return_ _CRTIMP __int64 __cdecl _ftelli64 ( _Inout_ FILE _File)
_Check_return_ _CRTIMP __int64 __cdecl _ftelli64_nolock ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_s_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP size_t __cdecl _fwrite_nolock ( _In_reads_bytes_(_Size *_Count) const void _DstBuf,
_In_ size_t  _Size,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl _fwscanf_s_l ( _Inout_ FILE _File,
_In_z_ _Scanf_s_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP unsigned int __cdecl _get_output_format ( void  )
_CRTIMP int __cdecl _get_printf_count_output ( void  )
_Check_return_ _CRTIMP int __cdecl _getmaxstdio ( void  )
_Check_return_opt_ _CRTIMP wchar_t* __cdecl _getws_s ( _Out_writes_z_(_SizeInWords) wchar_t _Str,
_In_ size_t  _SizeInWords 
)
_Inout_updates_opt_ ( BUFSIZ  )
_CRTIMP void __cdecl _lock_file ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _pclose ( _Inout_ FILE _File)
_Check_return_ _CRTIMP FILE* __cdecl _popen ( _In_z_ const char *  _Command,
_In_z_ const char *  _Mode 
)
_Check_return_opt_ _In_ size_t _In_z_ _Printf_format_string_params_ ( ) const
_Check_return_opt_ _In_ size_t _In_z_ _Printf_format_string_params_ ( ) const
_Check_return_opt_ _CRTIMP int __cdecl _printf_l ( _In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _printf_p ( _In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _printf_p_l ( _In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _printf_s_l ( _In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _putw ( _In_ int  _Word,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl _putws ( _In_z_ const wchar_t _Str)
_Check_return_opt_ _CRTIMP int __cdecl _rmtmp ( void  )
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _scanf_s_l ( _In_z_ _Scanf_s_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scprintf ( _In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _scprintf_l ( _In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scprintf_p ( _In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _scprintf_p_l ( _In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scwprintf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scwprintf_l ( _In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scwprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_ _CRTIMP int __cdecl _scwprintf_p_l ( _In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP unsigned int __cdecl _set_output_format ( _In_ unsigned int  _Format)
_CRTIMP int __cdecl _set_printf_count_output ( _In_ int  _Value)
_Check_return_opt_ _CRTIMP int __cdecl _setmaxstdio ( _In_ int  _Max)
_Check_return_opt_ _CRTIMP int __cdecl _snprintf_c ( _Out_writes_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl _snprintf_c_l ( _Out_writes_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snprintf_s ( _Out_writes_z_(_SizeInBytes) char *  _DstBuf,
_In_ size_t  _SizeInBytes,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snprintf_s_l ( _Out_writes_z_(_DstSize) char *  _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snscanf_s_l ( _In_reads_bytes_(_MaxCount) _Pre_z_ const char *  _Src,
_In_ size_t  _MaxCount,
_In_z_ _Scanf_s_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s_l ( _Out_writes_z_(_DstSize) wchar_t _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwscanf_s_l ( _In_reads_(_MaxCount) _Pre_z_ const wchar_t _Src,
_In_ size_t  _MaxCount,
_In_z_ _Scanf_s_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _sprintf_p ( _Out_writes_z_(_MaxCount) char *  _Dst,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl _sprintf_p_l ( _Out_writes_z_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _sprintf_s_l ( _Out_writes_z_(_DstSize) char *  _DstBuf,
_In_ size_t  _DstSize,
_In_z_ _Printf_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _sscanf_s_l ( _In_z_ const char *  _Src,
_In_z_ _Scanf_s_format_string_params_(0) const char *  _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swprintf_s_l ( _Out_writes_z_(_DstSize) wchar_t _DstBuf,
_In_ size_t  _DstSize,
_In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swscanf_s_l ( _In_z_ const wchar_t _Src,
_In_z_ _Scanf_s_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP char* __cdecl _tempnam ( _In_opt_z_ const char *  _DirName,
_In_opt_z_ const char *  _FilePrefix 
)
_Check_return_opt_ _CRTIMP int __cdecl _ungetc_nolock ( _In_ int  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl _ungetwc_nolock ( _In_ wint_t  _Ch,
_Inout_ FILE _File 
)
_CRTIMP int __cdecl _unlink ( _In_z_ const char *  _Filename)
_CRTIMP void __cdecl _unlock_file ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_l ( _Inout_ FILE _File,
_In_z_ const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_p_l ( _Inout_ FILE _File,
_In_z_ const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfprintf_s_l ( _Inout_ FILE _File,
_In_z_ const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_s_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_l ( _In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_p ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_p_l ( _In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vprintf_s_l ( _In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscprintf ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vscprintf_l ( _In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscprintf_p ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vscprintf_p_l ( _In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscwprintf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscwprintf_l ( _In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p_l ( _In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_c ( _Out_writes_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_c_l ( _Out_writes_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
const char *  ,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnprintf_s ( _Out_writes_z_(_SizeInBytes) char *  _DstBuf,
_In_ size_t  _SizeInBytes,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vsnprintf_s_l ( _Out_writes_z_(_DstSize) char *  _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s_l ( _Out_writes_z_(_DstSize) wchar_t _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vsprintf_p ( _Out_writes_z_(_MaxCount) char *  _Dst,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vsprintf_p_l ( _Out_writes_z_(_MaxCount) char *  _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsprintf_s_l ( _Out_writes_z_(_DstSize) char *  _DstBuf,
_In_ size_t  _DstSize,
_In_z_ _Printf_format_string_params_(2) const char *  _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vswprintf_s_l ( _Out_writes_z_(_DstSize) wchar_t _DstBuf,
_In_ size_t  _DstSize,
_In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_l ( _In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p_l ( _In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_s_l ( _In_z_ _Printf_format_string_params_(2) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)
_Check_return_ _CRTIMP FILE* __cdecl _wfdopen ( _In_ int  _FileHandle,
_In_z_ const wchar_t _Mode 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfopen_s ( _Outptr_result_maybenull_ FILE **  _File,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfreopen_s ( _Outptr_result_maybenull_ FILE **  _File,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode,
_Inout_ FILE _OldFile 
)
_Check_return_ _CRTIMP FILE* __cdecl _wfsopen ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode,
_In_ int  _ShFlag 
)
_CRTIMP void __cdecl _wperror ( _In_opt_z_ const wchar_t _ErrMsg)
_Check_return_ _CRTIMP FILE* __cdecl _wpopen ( _In_z_ const wchar_t _Command,
_In_z_ const wchar_t _Mode 
)
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_l ( _In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p_l ( _In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_s_l ( _In_z_ _Printf_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_CRTIMP int __cdecl _wremove ( _In_z_ const wchar_t _Filename)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _wscanf_s_l ( _In_z_ _Scanf_s_format_string_params_(0) const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)
_Check_return_ _CRTIMP wchar_t* __cdecl _wtempnam ( _In_opt_z_ const wchar_t _Directory,
_In_opt_z_ const wchar_t _FilePrefix 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wtmpnam_s ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords 
)
_CRTIMP void __cdecl clearerr ( _Inout_ FILE _File)
_Check_return_wat_ _CRTIMP errno_t __cdecl clearerr_s ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl fclose ( _Inout_ FILE _File)
_Check_return_ _CRTIMP int __cdecl feof ( _In_ FILE _File)
_Check_return_ _CRTIMP int __cdecl ferror ( _In_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl fflush ( _Inout_opt_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl fgetc ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl fgetpos ( _Inout_ FILE _File,
_Out_ fpos_t _Pos 
)
_Check_return_opt_ _CRTIMP char* __cdecl fgets ( _Out_writes_z_(_MaxCount) char *  _Buf,
_In_ int  _MaxCount,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl fgetwc ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP wchar_t* __cdecl fgetws ( _Out_writes_z_(_SizeInWords) wchar_t _Dst,
_In_ int  _SizeInWords,
_Inout_ FILE _File 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl fopen_s ( _Outptr_result_maybenull_ FILE **  _File,
_In_z_ const char *  _Filename,
_In_z_ const char *  _Mode 
)
_Check_return_opt_ _CRTIMP int __cdecl fprintf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl fprintf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl fputc ( _In_ int  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl fputs ( _In_z_ const char *  _Str,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl fputwc ( _In_ wchar_t  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl fputws ( _In_z_ const wchar_t _Str,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP size_t __cdecl fread ( _Out_writes_bytes_(_ElementSize *_Count) void _DstBuf,
_In_ size_t  _ElementSize,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP size_t __cdecl fread_s ( _Out_writes_bytes_(_ElementSize *_Count) void _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _ElementSize,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl freopen_s ( _Outptr_result_maybenull_ FILE **  _File,
_In_z_ const char *  _Filename,
_In_z_ const char *  _Mode,
_Inout_ FILE _OldFile 
)
_Check_return_opt_ _CRTIMP int __cdecl fseek ( _Inout_ FILE _File,
_In_ long  _Offset,
_In_ int  _Origin 
)
_Check_return_opt_ _CRTIMP int __cdecl fsetpos ( _Inout_ FILE _File,
_In_ const fpos_t _Pos 
)
_Check_return_ _CRTIMP long __cdecl ftell ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl fwprintf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl fwprintf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP size_t __cdecl fwrite ( _In_reads_bytes_(_Size *_Count) const void _Str,
_In_ size_t  _Size,
_In_ size_t  _Count,
_Inout_ FILE _File 
)
_Check_return_ _CRTIMP int __cdecl getc ( _Inout_ FILE _File)
_Check_return_ _CRTIMP int __cdecl getchar ( void  )
_CRTIMP char* __cdecl gets_s ( _Out_writes_z_(_Size) char *  _Buf,
_In_ rsize_t  _Size 
)
_Check_return_ _CRTIMP wint_t __cdecl getwc ( _Inout_ FILE _File)
_CRTIMP void __cdecl perror ( _In_opt_z_ const char *  _ErrMsg)
_Check_return_opt_ _CRTIMP int __cdecl printf ( _In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl printf_s ( _In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl putc ( _In_ int  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl putchar ( _In_ int  _Ch)
_Check_return_opt_ _CRTIMP int __cdecl puts ( _In_z_ const char *  _Str)
_Check_return_opt_ _CRTIMP wint_t __cdecl putwc ( _In_ wchar_t  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl putwchar ( _In_ wchar_t  _Ch)
_CRTIMP int __cdecl remove ( _In_z_ const char *  _Filename)
_Check_return_ _CRTIMP int __cdecl rename ( _In_z_ const char *  _OldFilename,
_In_z_ const char *  _NewFilename 
)
_CRTIMP void __cdecl rewind ( _Inout_ FILE _File)
_Check_return_opt_ _CRTIMP int __cdecl setvbuf ( _Inout_ FILE _File,
_Inout_updates_opt_z_(_Size) char *  _Buf,
_In_ int  _Mode,
_In_ size_t  _Size 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl sprintf_s ( _Out_writes_z_(_SizeInBytes) char *  _DstBuf,
_In_ size_t  _SizeInBytes,
_In_z_ _Printf_format_string_ const char *  _Format,
  ... 
)
_CRTIMP_ALTERNATIVE int __cdecl swprintf_s ( _Out_writes_z_(_SizeInWords) wchar_t _Dst,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_wat_ _CRTIMP errno_t __cdecl tmpnam_s ( _Out_writes_z_(_Size) char *  _Buf,
_In_ rsize_t  _Size 
)
_Check_return_opt_ _CRTIMP int __cdecl ungetc ( _In_ int  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP wint_t __cdecl ungetwc ( _In_ wint_t  _Ch,
_Inout_ FILE _File 
)
_Check_return_opt_ _CRTIMP int __cdecl vfprintf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfprintf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfscanf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfscanf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf_s ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vprintf ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vprintf_s ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vscanf ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vscanf_s ( _In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vsnprintf_s ( _Out_writes_z_(_DstSize) char *  _DstBuf,
_In_ size_t  _DstSize,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_CRTIMP_ALTERNATIVE int __cdecl vsprintf_s ( _Out_writes_z_(_SizeInBytes) char *  _DstBuf,
_In_ size_t  _SizeInBytes,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vsscanf ( const char *  _srcBuf,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl vsscanf_s ( const char *  _Src,
_In_z_ _Printf_format_string_ const char *  _Format,
va_list  _ArgList 
)
_CRTIMP_ALTERNATIVE int __cdecl vswprintf_s ( _Out_writes_z_(_SizeInWords) wchar_t _Dst,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vswscanf ( const wchar_t _srcBuf,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl vswscanf_s ( const wchar_t _Src,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vwprintf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vwprintf_s ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vwscanf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl vwscanf_s ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
_Check_return_opt_ _CRTIMP int __cdecl wprintf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
_Check_return_opt_ _CRTIMP int __cdecl wprintf_s ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

Variable Documentation

_In_opt_z_ const char* _FilePrefix