home *** CD-ROM | disk | FTP | other *** search
- /* RUN/C version of STRIP */
-
- /*
- Disclaimer: This program illustrates some aspects of the C language.
- It is supplied free of charge and placed in the public domain. No
- support is available for STRIP.C from LBA or Age of Reason Co.
- */
- main() /* strip.c */
- {
- FILE *fi, *fo;
- int c, echo;
- char source[80], dest[80];
-
- puts("Source file?");
- gets(source);
- puts("Destination file?");
- gets(dest);
- echo = 0;
- puts("Echo (Y/N)?");
- c = getchar();
- putchar('\n');
- if (c == 'Y'|| c == 'y') echo = 1;
- if((fi = fopen(source,"rb")) == NULL) {
- printf("Can't open %s\n",source);
- exit();
- }
- if((fo = fopen(dest,"wb")) == NULL) {
- printf("Can't open %s\n",dest);
- exit();
- }
- while ((c = getc(fi)) != EOF) {
- c = c & 127;
- putc(c,fo);
- if (echo)
- putchar(c);
- }
- putc(26,fo);
- fclose(fi);
- fclose(fo);
- }