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