home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat142.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <dos.h>
- #include <fcntl.h>
-
- void main()
- {
- char *data="º╓╝╓¿∞⌐│¼Oñ░╗≥¬FªΦ !\nº╓╝╓┤N¼O╛╟▓▀ FoxPro..(ñ╙░╢ñjñF, ░_Ñ▀╣¬┤x)";
- int handle;
- unsigned len_read;
- char buf[512];
-
- if (_dos_open("TEST.TXT", O_RDONLY, &handle) != 0)
- {
- printf("╢}└╔┐∙╗~\n");
- exit(1);
- }
-
- write(handle, data, strlen(data));
- lseek(handle, 0L, SEEK_SET);
- if ((bytes = _dos_read(handle, buf, strlen(data), &len_read)) != 0)
- {
- printf("┼¬¿·Ñó▒╤.\n");
- exit(1);
- }
- else
- {
- printf("ª@┼¬¿· %d ¡╙ª∞ñ╕▓╒.\n", len_read);
- }
- }