ext.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/ext.c
blob: 6b8ce91c5eb2a9fca45a8a9771ccea99452b5152 (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#define _GNU_SOURCE
#include "stdio_impl.h"
#include <stdio_ext.h>
void _flushlbf(void)
{
	fflush(0);
}
int __fsetlocking(FILE *f, int type)
{
	return 0;
}
int __fwriting(FILE *f)
{
	return f->wend && f->wpos > f->wbase;
}
int __freading(FILE *f)
{
	return f->rend > f->rpos;
}
int __freadable(FILE *f)
{
	return !(f->flags & F_NORD);
}
int __fwritable(FILE *f)
{
	return !(f->flags & F_NOWR);
}
int __flbf(FILE *f)
{
	return f->lbf >= 0;
}
size_t __fbufsize(FILE *f)
{
	return f->buf_size;
}
size_t __fpending(FILE *f)
{
	return f->wend ? f->wpos - f->wbase : 0;
}
int __fpurge(FILE *f)
{
	f->wpos = f->wbase = f->wend = 0;
	f->rpos = f->rend = 0;
	return 0;
}
weak_alias(__fpurge, fpurge);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 23:30:09 +0000

AltStyle によって変換されたページ (->オリジナル) /