]> git.draconx.ca Git - slotifier.git/blobdiff - src/slotifier.c
Replace Gnulib striconv with copyright_symbol from dxcommon.
[slotifier.git] / src / slotifier.c
index 312f9f688827b1d495000f5dfe08f1a2e605ba6b..09e5aeecce281f894bca42b8c87630c37eb8c6ff 100644 (file)
@@ -28,7 +28,6 @@
 #include <gettext.h>
 #include <localcharset.h>
 #include <mbswidth.h>
-#include <striconv.h>
 
 #include <CNearTree.h>
 #include <gerbv.h>
@@ -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)