commit 9e800679c9a357d05068458865eb4b12c18005af
parent a7d38b71ca9ec77756344d71651925791547464b
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Sat, 24 Dec 2011 11:51:35 +0100
show_usage() refactored to showUsage()
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ansilove/main.c b/ansilove/main.c
@@ -23,7 +23,7 @@
#endif
// show usage
-void show_usage(void)
+void showUsage(void)
{
printf("USAGE: ansilove inputfile columns (.BIN only) font bits icecolors\n\n");
printf(" Check the README to have details about supported options for each\n");
@@ -52,7 +52,7 @@ int main(int argc, char *argv[])
{
printf("--------------------------------------------------\n");
printf("AnsiLove/C %s - copyright (C) 2011 Stefan Vogt\n", VERSION);
- printf("--------------------------------------------------\n");
+ printf("--------------------------------------------------\n\n");
char columns[], font[], bits[], icecolors[];
char input[] = argv[1];
@@ -64,7 +64,7 @@ int main(int argc, char *argv[])
if (argc == 1)
{
- show_usage();
+ showUsage();
}
if (input_file_extension == '.bin')