home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / filedocs / simcvt.c < prev    next >
C/C++ Source or Header  |  1994-03-04  |  3KB  |  74 lines

  1. /******************************************************************************
  2.  
  3. Written by reynolds@sun.com                                     01/21/90
  4. Minor corrections to instructions and portability
  5.         davidsen@crdos1.crd.ge.com            02/23/90
  6. Updated for SimTel Software Repository
  7.         w8sdz@SimTel.Coast.NET                11/01/93
  8.  
  9. This SIMCVT.C filter should convert SimTel's "SIMIBM.IDX" file into a
  10. readable "SIMIBM.LST" that is compatible with the other convert programs,
  11. except for the run-date at the top of the output file.
  12.  
  13. This program, written in "C" should compile on both 4.3BSD Unix machines,
  14. as well as IBM/pc compatible machines.  It works on both VAXen, and Suns.
  15.  
  16. To Compile on Unix, type "cc -o simcvt SIMCVT.C" creating simcvt.
  17. To Compile on IBM/pcs, see your C manual that came with the compiler.
  18.  
  19. To run, type "simcvt < simibm.idx > simibm.lst
  20.  
  21. ******************************************************************************/
  22.  
  23. #include <stdio.h>
  24.  
  25. main()
  26.  
  27. {
  28. char  fs[10],dir[60],name[15],descr[60]; /* input variables */
  29. char  inputline[257];                    /* for initial read */
  30. int   rev,bits;                          /* input variables */
  31. long  length,date;                       /* input variables */
  32. char  lfs[10],ldir[60];                  /* stores last filesystem/directory */
  33. char  type;                              /* output variable for 'A' or 'B' */
  34. char  c;                                 /* picks off EOF,",linefeed */
  35.  
  36. printf("These files are available by anonymous FTP from the SimTel Software\n");
  37. printf("Repository primary mirror site OAK.Oakland.Edu (141.210.10.117) and\n");
  38. printf("its mirrors.  See /pub/msdos/filedocs/download.inf for a list of all\n");
  39. printf("mirror sites.\n\n");
  40.  
  41. printf("NOTE: Type B is Binary; Type A is ASCII\n");
  42.  
  43. inputline[256] = 0;
  44.  
  45. while (fgets(inputline, 256, stdin) != NULL)  {
  46.  
  47.    sscanf(inputline, 
  48.            "\"%[^\"]\",\"%[^\"]\",\"%[^\"]\",%d,%ld,%d,%ld,\"%[^\"]\"",
  49.             fs, dir, name, &rev, &length, &bits, &date, descr);
  50.  
  51.    type = 'B';                           /* Binary 8-bit */
  52.    if (bits == 7) type = 'A';            /* ASCII  7-bit */
  53.  
  54.    if (strcmp(ldir,dir) || strcmp(lfs,fs)) {  /* New Directory */
  55.       printf("\nDirectory %s%s\n",fs,dir);
  56.       printf(" Filename   Type Length   Date    Description\n");
  57.       printf("==============================================\n");
  58.       strcpy(ldir, dir);          /* Remember last directory with ldir  */
  59.       strcpy(lfs,fs);             /* Remember last file system with lfs */
  60.    }                              /* End of the New Directory routine   */
  61.  
  62.  
  63.    printf("%-12.12s  %c %7ld  %6ld  %s\n",name,type,length,date,descr);
  64.    }
  65. } /* end of main() program by Ray */
  66.  
  67. /*****************************************************************************
  68.  
  69.    This filter takes data in the following format:
  70. "pub/","msdos/ada/","ada-lrm2.zip",1,201439,8,890411,"The Ada Language Reference Manual reader (2/4)"
  71.    And converts it to the following format:
  72. ada-lrm2.zip  B  201439  890411  The Ada Language Reference Manual reader (2/4)
  73. *****************************************************************************/
  74.