X-Git-Url: https://git.draconx.ca/gitweb/slotifier.git/blobdiff_plain/e89bebee19d3c919f3d501999fc38867cdcd2b00..HEAD:/src/slotifier.c diff --git a/src/slotifier.c b/src/slotifier.c index 312f9f6..09e5aee 100644 --- a/src/slotifier.c +++ b/src/slotifier.c @@ -28,7 +28,6 @@ #include #include #include -#include #include #include @@ -36,6 +35,7 @@ #include "options.h" #include "help.h" #include "xtra.h" +#include "copysym.h" #if !ENABLE_NLS # undef ENABLE_NLS @@ -49,23 +49,13 @@ static unsigned verbose; static void print_version(void) { - const char *copysign = "(C)"; - void *convsign = NULL; + const char *copysign = copyright_symbol(locale_charset()); puts(PACKAGE_STRING); - - if (ENABLE_NLS) { - convsign = str_iconv("\xc2\xa9", "UTF-8", locale_charset()); - if (convsign) - copysign = convsign; - } - printf("Copyright %s 2023 Nick Bowler.\n", copysign); puts("License GPLv3+: GNU GPL version 3 or any later version."); puts("This is free software: you are free to change and redistribute it."); puts("There is NO WARRANTY, to the extent permitted by law."); - - free(convsign); } static void print_usage(FILE *f)