summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2022-08-30 23:00:27 +1000
committerGentoo <installgentoo@endianness.com>2022-08-30 23:00:27 +1000
commited328aba6632aa2e042be36e0b0f919916a0ee21 (patch)
tree85598435a71ce1fa76f71f0253f52b48ea65aec9 /main.c
parentf0e550345e353813875b5b5d4d9ea7e3d5a77bae (diff)
downloadgct-generator-master.tar.gz
gct-generator-master.tar.bz2
gct-generator-master.zip
added forgotten licenseHEADmaster
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/main.c b/main.c
index 8e19b51..4ef554a 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2020 Gentoo-libre Install
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
@@ -12,8 +23,9 @@ int main(int argc, char *argv[])
char header[] = {0x00,0xd0,0xc0,0xde,0x00,0xd0,0xc0,0xde};
fwrite(header, 1, 8, output);
+
FILE *input = fopen(argv[1],"r");
- if (!input){fprintf(stderr,"Could not open:%s!\n",argv[1]); exit(1);}
+ if (!input){fprintf(stderr,"Could not open: %s\n",argv[1]); exit(1);}
/* check that the given file isn't empty */
fseek(input, 0L, SEEK_END);
@@ -65,5 +77,5 @@ int main(int argc, char *argv[])
fclose(output);
fclose(input);
- return 0;
+ return 0;
}