musl/src/stdio/fread.c

39 lines
722 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "stdio_impl.h"
#include <string.h>
2011-02-12 00:22:29 -05:00
#define MIN(a,b) ((a)<(b) ? (a) : (b))
size_t fread(void *restrict destv, size_t size, size_t nmemb, FILE *restrict f)
2011-02-12 00:22:29 -05:00
{
unsigned char *dest = destv;
size_t len = size*nmemb, l = len, k;
/* Never touch the file if length is zero.. */
if (!l) return 0;
FLOCK(f);
if (f->rend - f->rpos > 0) {
2011-02-12 00:22:29 -05:00
/* First exhaust the buffer. */
k = MIN(f->rend - f->rpos, l);
memcpy(dest, f->rpos, k);
f->rpos += k;
dest += k;
l -= k;
}
2011-02-12 00:22:29 -05:00
/* Read the remainder directly */
for (; l; l-=k, dest+=k) {
k = __toread(f) ? 0 : f->read(f, dest, l);
2011-02-12 00:22:29 -05:00
if (k+1<=1) {
FUNLOCK(f);
return (len-l)/size;
2011-02-12 00:22:29 -05:00
}
}
FUNLOCK(f);
return nmemb;
}
weak_alias(fread, fread_unlocked);