summaryrefslogtreecommitdiff
path: root/src/stdio/getc_unlocked.c
blob: 13c9f8670331477f23146aa5ac726ce9c377ab40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stdio.h>
#include "_stdio.h"

#if defined _POSIX_SOURCE
#include <sys/types.h>
#include <unistd.h>
#else
#include "_syscall.h"
#define read(_fd, _buf, _size) __scall3(read, _fd, _buf, _size)
#endif

int getc_unlocked(FILE * stream)
{
	char c = 0;

	SIGNAL_SAFE(0);

	ASSERT_STREAM(stream, 0, OP_INPUT);

	if (stream->operation == OP_OUTPUT) {
		UNDEFINED("attempted input on stream immediately after output");
	}

	stream->operation = OP_INPUT;

	if (read(stream->fd, &c, sizeof(c)) != 1) {
		stream->err = 1;
		return EOF;
	}

	return c;
}

/*
POSIX(199506)
*/