diff options
author | jaseg <git@jaseg.net> | 2019-06-16 21:29:14 +0900 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2019-06-17 11:07:07 +0900 |
commit | 35dca3d0a381496d7195cd78f5b24aa7b62f2154 (patch) | |
tree | 8eb42af2c8e60d6eb6ca2f0d9f6c5afa013a2445 | |
parent | abe2bacbf9da389d664ec4dd6df669569ae82efe (diff) | |
download | lolcat-35dca3d0a381496d7195cd78f5b24aa7b62f2154.tar.gz lolcat-35dca3d0a381496d7195cd78f5b24aa7b62f2154.tar.bz2 lolcat-35dca3d0a381496d7195cd78f5b24aa7b62f2154.zip |
Fix project url and bump version to v1.0
Thanks @bratkartoffel . Closes #23
-rw-r--r-- | lolcat.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -45,9 +45,9 @@ static char helpstr[] = "\n" " lolcat Copy standard input to standard output.\n" " fortune | lolcat Display a rainbow cookie.\n" "\n" - "Report lolcat bugs to <http://www.github.org/jaseg/lolcat/issues>\n" - "lolcat home page: <http://www.github.org/jaseg/lolcat/>\n" - "Original idea: <http://www.github.org/busyloop/lolcat/>\n"; + "Report lolcat bugs to <http://www.github.com/jaseg/lolcat/issues>\n" + "lolcat home page: <http://www.github.com/jaseg/lolcat/>\n" + "Original idea: <http://www.github.com/busyloop/lolcat/>\n"; #define ARRAY_SIZE(foo) (sizeof(foo) / sizeof(foo[0])) const unsigned char codes[] = { 39, 38, 44, 43, 49, 48, 84, 83, 119, 118, 154, 148, 184, 178, 214, 208, 209, 203, 204, 198, 199, 163, 164, 128, 129, 93, 99, 63, 69, 33 }; @@ -72,7 +72,7 @@ static void usage(void) static void version(void) { - wprintf(L"lolcat version 0.1, (c) 2014 jaseg\n"); + wprintf(L"lolcat version 1.0, (c) 2014 jaseg\n"); exit(0); } |