- t2ex
- bsd_source/lib/libc/src_bsd/stdio/fgets.c - 3.9KB - 105 lines
65: if (fp->_r <= 0) {
66: if (__srefill(fp)) {
67: /* EOF/error: stop with partial or no line */
- bsd_source/lib/libc/src_bsd/stdio/fread.c - 3.1KB - 86 lines
64: resid -= r;
65: if (__srefill(fp)) {
66: /* no more input: return partial result */
- bsd_source/lib/libc/src_bsd/stdio/fseek.c - 8.9KB - 261 lines
217: if (n) {
218: if (__srefill(fp) || fp->_r < n)
219: goto dumb;
- bsd_source/lib/libc/src_bsd/stdio/rget.c - 2.1KB - 51 lines
45: _SET_ORIENTATION(fp, -1);
46: if (__srefill(fp) == 0) {
47: fp->_r--;
- bsd_source/lib/libc/src_bsd/stdio/vfscanf.c - 43.3KB - 970 lines
133: if (isspace(c)) {
134: while ((fp->_r > 0 || __srefill(fp) == 0) &&
135: isspace(*fp->_p))
- More results from vfscanf.c