fgetc.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/fgetc.c
blob: da6386842f99fc869d244f3c0b9e71c3465910ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stdio_impl.h"
int fgetc(FILE *f)
{
	int c;
	FLOCK(f);
	c = getc_unlocked(f);
	FUNLOCK(f);
	return c;
}
weak_alias(fgetc, getc);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 15:50:18 +0000

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