Ada simply cannot do that, sorry. Ada sucks. "Sergio" escribi� en el mensaje news:n5su6.24687$CL6.767652@telenews.teleline.es... > How could I do this in Ada? Could I do it at a reasonable speed? I don't > know how, please help me. Thanks > > void WorkFile(char *fileName) > { > char Buffer[4096]; > FILE *handle; > > handle = fopen(fileName, "r"); > while (!feof(handle)) > { > fread(handle, 4096, 1, buffer); /* Read data from file to buffer */ > Work(Buffer); /* ... do some work with such data */ > } > } > > >