getchar_unlocked()

QNX SDP8.0C Library ReferenceAPIDeveloper

Get a character from stdin

Synopsis:

#include <stdio.h>

int getchar_unlocked( void );

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The getchar_unlocked() function is a thread-unsafe version of getchar(). You can use it safely only when the invoking thread has locked stdin using flockfile() (or ftrylockfile()) and funlockfile().

Returns:

  • If successful, getchar_unlocked() returns the next character from stdin, cast as (int)(unsigned char).
  • If the end-of-file indicator for the stream is set or the end of the file has been reached, getchar_unlocked() sets the end-of-file indicator and returns EOF.
  • If an error occurred, getchar_unlocked() sets the error indicator for the stream, sets errno, and returns EOF.
Note:
Use feof() or ferror() to distinguish an end-of-file condition from an error.

Classification:

POSIX 1003.1

Safety:
Cancellation pointYes
Signal handlerNo
ThreadNo
Page updated: