home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat67.c */
- /*------------------------------------------------------------------*/
- #include <sys\types.h>
- #include <fcntl.h>
- #include <stdio.h>
- #include <io.h>
-
- void main(int argc,char *argv[])
- {
- int handle;
-
- if(argc == 1)
- printf("¿╧Ñ╬ñΦ¬k: wat67 <└╔«╫ªW║┘.¬■└╔ªW>\n");
- else if(argc == 2)
- {
- handle = open(argv[1],O_RDONLY);
- if(handle != -1)
- {
- printf("└╔«╫ %s ñº¬°½╫¼░ %ld ª∞ñ╕▓╒\n",argv[1],filelength(handle));
- close(handle);
- }
- }
- }