* Autores: Leandro Lucarella <llucare@fi.uba.ar>
*----------------------------------------------------------------------------
*
- * $Id: bufford.c 624 2004-05-30 20:18:04Z llucare $
+ * $Id$
*
*/
size_t vfread(void* ptr, size_t size, size_t nmemb, VFILE* vfp)
{
- int i;
+ int i = 0;
size_t total = size * nmemb;
/* leo uno a uno y si hay error salgo. */
- for (i = 0; i < total && (((char*)ptr)[i] = vfgetc(vfp)) != EOF; ++i);
+ while (i < total && (((char*)ptr)[i++] = vfgetc(vfp)) != EOF);
return i % size;
}
size_t vfwrite(const void *ptr, size_t size, size_t nmemb, VFILE* vfp)
{
- int i;
+ int i = 0;
size_t total = size * nmemb;
/* escribo uno a uno y si hay error salgo. */
- for (i = 0; i < total && (vfputc(((char*)ptr)[i], vfp)) != EOF; ++i);
+ while (i < total && (vfputc(((char*)ptr)[i++], vfp)) != EOF);
return i % size;
}