Operating systems, development tools, and professional services
for connected embedded systems
for connected embedded systems
![]() |
![]() |
![]() |
![]() |
getc_unlocked()
Get the next character from a file
Synopsis:
#include <stdio.h> int getc_unlocked( FILE *fp );
Arguments:
- fp
- The stream you want to get the character from.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The getc_unlocked() function is a thread-unsafe version of getc(). You can use it safely only when the invoking thread has locked fp using flockfile() (or ftrylockfile()) and funlockfile().
Returns:
The next character from the input stream pointed to by fp, or EOF if an end-of-file or error condition occurs (errno is set).
Classification:
| Safety: | |
|---|---|
| Cancellation point | Yes |
| Interrupt handler | No |
| Signal handler | No |
| Thread | No |
See also:
feof(), ferror(), flockfile(), getc(), getchar(), getchar_unlocked(), putc(), putc_unlocked(), putchar(), putchar_unlocked()
![]() |
![]() |
![]() |
![]() |

![[Previous]](../prev.gif)
![[Contents]](../contents.gif)
![[Index]](../keyword_index.gif)
![[Next]](../next.gif)
