home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat52.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <dos.h>
- #include <fcntl.h>
-
- void main()
- {
- unsigned len_read;
- int handle;
- auto char buffer[512];
-
- if(_dos_open("MYFILE.TXT", O_RDONLY, &handle) != 0)
- {
- printf("╡L¬k╢}▒╥└╔«╫\n");
- }
- else
- {
- printf("ñwª¿Ñ\\ªa╢}▒╥└╔«╫\n");
- _dos_read(handle, buffer, 512, &len_read);
- _dos_close(handle);
- }
- }
-