getc_unlocked
Get next character or word from input stream
Interface
#include <stdio.h>
int | fgetc (FILE *stream) |
int | getc (FILE *stream) |
int | getc_unlocked (FILE *stream) |
int | getchar () |
int | getchar_unlocked (void) |
int | getw (FILE *stream) |
Description
The fgetc function obtains the next input character (if present) from the stream pointed at by stream, or the next character pushed back on the stream via ungetc. The getc function acts essentially identically to fgetc, but is a macro that expands in-line. The getchar function is equivalent to getc (stdin). The getw function obtains the next int (if present) from the stream pointed at by stream. The getc_unlocked and getchar_unlocked functions are equivalent to getc and getchar respectively, except that the caller is responsible for locking the stream with flockfile before calling them. These functions may be used to avoid the overhead of locking the stream for each character, and to avoid input being dispersed among multiple threads reading from the same stream.Example:
Example - Get next character or word from input stream
Workings
#include <stdio.h> int main() { int ch; FILE *input; if (input = fopen("fred.txt", "rt")) { ch = getc(input); while (ch != EOF) { printf("%c", ch); ch = getc(input); } fclose(input); } return 0; }