Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PopovEvgeniy committed Mar 30, 2024
1 parent d40fc14 commit 09f40a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions grpdecompiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ void show_intro()
{
putchar('\n');
puts("GRP DECOMPILER");
puts("Version 2.1.2");
puts("Version 2.1.3");
puts("This program distributed under GNU GENERAL PUBLIC LICENSE");
puts("File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich, 2010-2023 years");
puts("File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich, 2010-2024 years");
}

void show_message(const char *message)
Expand All @@ -69,7 +69,7 @@ FILE *open_input_file(const char *name)
target=fopen(name,"rb");
if (target==NULL)
{
show_message("Can't open input file");
puts("Can't open input file");
exit(1);
}
return target;
Expand Down Expand Up @@ -198,7 +198,7 @@ size_t check_format(FILE *input)
fread(&target,sizeof(grp_block),1,input);
if(strncmp(target.information,"KenSilverman",12)!=0)
{
show_message("Bad signature of GRP pseudo-archive!");
puts("Bad signature of GRP pseudo-archive!");
exit(4);
}
return (size_t)target.length;
Expand Down
6 changes: 3 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
GRP DECOMPILER

Version 2.1.2
Version 2.1.3

File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich

System requirement

52 kilobytes free space on storage media.
68 kilobytes free space on storage media.

Description and usage

Expand Down Expand Up @@ -70,4 +70,4 @@ Version history
2.0.5 - 2.0.6 - Small changes.
2.0.7 - Small bug fixed.
2.0.7.1 - 2.0.7.2 - Makefile updated.
2.0.8 - 2.1.2 - Small changes.
2.0.8 - 2.1.3 - Small changes.

0 comments on commit 09f40a7

Please sign in to comment.