home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat58.c */
- /*------------------------------------------------------------------*/
-
- #include <stdio.h>
- #include <dos.h>
- #include <fcntl.h>
-
- char buf[] = "FoxPro 2.0 ñº╢}⌐±¼[║c╗P└│Ñ╬╡{ªí¼╔¡▒ API";
-
- void main()
- {
- int handle;
- unsigned bytes;
-
- if(_dos_creat("MYFILE.TXT",_A_NORMAL,&handle) != 0)
- printf("╡L¬k╢}▒╥└╔«╫ MYFILE.TXT\n");
- else
- {
- printf("└╔«╫ MYFILE.TXT ñwª¿Ñ\\ªa╢}▒╥, ▓{ªb╢}⌐l╝gñJ╕Ω«╞\n");
- /* ▒N╕Ω«╞╝gñJ└╔«╫ññ */
- _dos_write(handle, buf, sizeof(buf), &bytes);
- /* ├÷│¼└╔«╫ */
- _dos_close(handle);
- }
- }