The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
874 B

#include<stdio.h>
#include<assert.h>
#define ARRSIZE 80
int main(int argc, char **argv) {
char arr[ARRSIZE];
char *ofilename;
char *ifilename;
FILE *ifile;
FILE *ofile;
size_t bytes;
if(argc != 3) {
fprintf(stderr, "%s <input file> <output file>\n", argv[0]);
return 1;
}
ifilename = argv[1];
ofilename = argv[2];
printf("%s\n", ifilename);
ifile = fopen(argv[1], "r");
if(!ifile) {
fprintf(stderr, "Could not open source file %s.\n", argv[1]);
return 1;
}
ofile = fopen(ofilename, "w");
if(!ofile) {
fprintf(stderr, "Could not open target file %s\n", ofilename);
return 1;
}
bytes = fread(arr, 1, ARRSIZE, ifile);
assert(bytes < 80);
assert(bytes > 0);
fwrite(arr, 1, bytes, ofile);
fclose(ifile);
fclose(ofile);
return 0;
}