home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat31.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
- #include <fcntl.h>
- #include <io.h>
- #include <sys\stat.h>
-
- void main()
- {
- int handle;
- char buf[21] = "FoxPro 2.0 ╡{ªí│]¡p.";
-
- /* ½╪Ñ▀ñ@¡╙ 20 ¡╙ª∞ñ╕▓╒ñjñpñº└╔«╫ */
- handle = open("TEST.TXT", O_RDWR|O_CREAT|O_TEXT,S_IREAD|S_IWRITE);
- if (handle > -1)
- {
- if(write(handle, buf, strlen(buf)) == 20)
- {
- printf("ñw½╪Ñ▀ñ@¡╙ 20 ¡╙ª∞ñ╕▓╒ñjñpñº└╔«╫ TEST.TXT\n");
- }
- else
- {
- printf("Ñ╝»αÑ┐▒`⌐╬º╣Ñ■╝gñJ\n");
- }
-
- /* ├÷│¼ª╣└╔«╫ */
- close(handle);
- }
- else
- {
- printf("╢} └╔ ┐∙ ╗~\n");
- }
- }