home *** CD-ROM | disk | FTP | other *** search
/ Rat's Nest 1 / ratsnest1.iso / prgmming / c / ansitype.c < prev    next >
C/C++ Source or Header  |  1995-12-13  |  370b  |  24 lines

  1. #include <conio.h>
  2. #include <stdio.h>
  3.  
  4. void main(int argc,char *argv[])
  5. {
  6.     FILE *pfile;
  7.     char buffer[80];
  8.  
  9.     if(argc<2) {
  10.         printf("Syntax : ANSITYPE <filename.ext>\n");
  11.         return;
  12.     }
  13.  
  14.     pfile=fopen(argv[1],"rt");
  15.     if(pfile==NULL) printf("Ei voi avata");
  16.  
  17.     while(!feof(pfile)) {
  18.         fgets(buffer,80,pfile);
  19.         printf("%s",buffer);
  20.     }
  21.     fclose(pfile);
  22. }
  23.  
  24.