crt Low level IO issues

Started by
0 comments, last by daerid 19 years, 3 months ago
i'm using the crt's low level io for reading, and at one point it refuses to _read, buf it i make it _tell it's location before, it will read, any suggestions? And it's always at that one spot and never anywhere else.
Advertisement
Any functions prefixed with an underscore or a double underscore are reserved for compiler-specific implementations.

I believe _read and _tell are not part of the C standard.

You'd do better to use fopen/fclose, ftell, and fread/fwrite
daerid@gmail.com

This topic is closed to new replies.

Advertisement