home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat27.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <fcntl.h>
- #include <sys\stat.h>
- #include <io.h>
-
- void main()
- {
- int handle;
- char buffer[20] = "0123456789ABCDEFGHIJ";
-
- /* ½╪Ñ▀ñ@¡╙ñjñp¼░ 20 ¡╙ª∞ñ╕▓╒¬║└╔«╫ */
- handle = open("MYFILE.TXT", O_RDWR|O_CREAT|O_TRUNC, S_IREAD|S_IWRITE);
- write(handle, buffer, strlen(buffer));
-
- /* ▒N└╔«╫╝W¬°ª▄ 512 ¡╙ª∞ñ╕▓╒ */
- if(chsize(handle, 512) == 0)
- {
- printf("└╔«╫ñw│Q╝W¬°ª▄ 512 ¡╙ª∞ñ╕▓╒\n");
- }
- else
- {
- printf("╡L¬k╝W¬°└╔«╫\n");
- }
-
- /* ├÷│¼└╔«╫ */
- close(handle);
- }