__uflow.c 112 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7
#include "stdio_impl.h"

int __uflow(FILE *f)
{
	if (__underflow(f) < 0) return EOF;
	else return *f->rpos++;
}