This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/eof.c

20 lines
373 B
C
Raw Normal View History

#include <stdio.h>
#include <fcntl.h>
#include <io.h>
void main()
{
int handle, len;
char buffer[100];
handle = open( "file", O_RDONLY );
if( handle != -1 ) {
while( ! eof( handle ) ) {
len = read( handle, buffer, sizeof(buffer) - 1 );
buffer[ len ] = '\0';
printf( "%s", buffer );
}
close( handle );
}
}