home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat152.c */
- /*------------------------------------------------------------------*/
- #include <io.h>
- #include <fcntl.h>
- #include <sys\stat.h>
- #include <share.h>
- #include <stdio.h>
-
- void main()
- {
- int handle;
- char *message = "FoxPro 2.0 ╡{ªí│]¡p --- º▐Ñ⌐╗P╣Ω░╚ ºY▒N╗P▒z¿ú¡▒";
-
- handle = sopen("TEST.TXT", O_RDWR | O_CREAT | O_TRUNC | O_TEXT,
- SH_DENYNO, S_IREAD | S_IWRITE);
-
-
- if (!handle)
- {
- printf("sopen() ░⌡ªµÑó▒╤\n");
- exit(1);
- }
- write(handle, message, strlen(message));
-
- close(handle);
- }