iconv: add aliases for GBK
[musl.git] / src / stdio / __uflow.c
blob2a88bca6b123cc2143911783a09a9cac0ce53773
1 #include "stdio_impl.h"
3 /* This function assumes it will never be called if there is already
4 * data buffered for reading. */
6 int __uflow(FILE *f)
8 unsigned char c;
9 if (!__toread(f) && f->read(f, &c, 1)==1) return c;
10 return EOF;