2023-04-10 04:58:48 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "lib.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
if (argc < 2) {
|
|
|
|
printf("usage: catclone <FILE>\n");
|
|
|
|
die("args");
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *fp = fopen(argv[1], "r");
|
|
|
|
|
|
|
|
if (fp == NULL) {
|
|
|
|
die("fopen");
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
2023-04-09 17:42:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|