_nolock functions

The _nolock functions are versions of I/O functions that don't perform any locking. They're provided for users requiring maximum performance. For more information, see Multithreaded libraries performance.

Use _nolock functions only if your program is truly single-threaded or if it does its own locking.

No lock routines

_fclose_nolock

_fflush_nolock

_fgetc_nolock, _fgetwc_nolock

_fread_nolock

_fseek_nolock, _fseeki64_nolock

_ftell_nolock, _ftelli64_nolock

_fwrite_nolock

_getc_nolock, _getwc_nolock

_getch_nolock, _getwch_nolock

_getchar_nolock, _getwchar_nolock

_getche_nolock, _getwche_nolock

_getdcwd_nolock, _wgetdcwd_nolock

_putc_nolock, _putwc_nolock

_putch_nolock, _putwch_nolock

_putchar_nolock, _putwchar_nolock

_ungetc_nolock, _ungetwc_nolock

_ungetch_nolock, _ungetwch_nolock

See also

Input and output
Universal C runtime routines by category