#include #include main(argc,argv) int argc; int *argv[]; { FILE *fp; FILE *fpout; char htmlname[30]; char proname[30]; char nextline[141]; int pos; int i; int doc_found; argv++; /* This skips the zeroth argument */ argc--; for (i=0; i\n"); fprintf(fpout,"Buie - IDL - %s\n",proname); fprintf(fpout,"\n"); fprintf(fpout,"
\n");
               }

            else if (doc_found) {
               fprintf(fpout,"%s\n",&nextline[1]);
               }
            }
         if (doc_found) {
            fprintf(fpout,"
\n"); fprintf(fpout,"\n"); fprintf(fpout,"\n"); fclose(fpout); } fclose(fp); } } exit(0); }