Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 19 of file vfprintf_s.c.
Referenced by fprintf_s(), printf_s(), and vprintf_s().
{ int result; if(!MSVCRT_CHECK_PMT(format != NULL)) { _set_errno(EINVAL); return -1; } _lock_file(file); result = streamout(file, format, argptr); _unlock_file(file); return result; }