mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
17 lines
225 B
C
17 lines
225 B
C
#include <stdio.h>
|
|
|
|
main(argc, argv)
|
|
int argc;
|
|
char *argv[];
|
|
{
|
|
FILE *fopena(), *in, *out;
|
|
int c;
|
|
|
|
in=fopena(*++argv, "r");
|
|
out=fopena(*++argv, "w");
|
|
while ((c=getc(in))!=EOF)
|
|
putc(c, out);
|
|
fclose(in);
|
|
fclose(out);
|
|
}
|