strtoumax: fix typo in previous commit.
[gnulib.git] / tests / test-iconvme.c
index c2041ec..4c8a5a1 100644 (file)
@@ -1,20 +1,21 @@
 /* Recode strings between character sets, using iconv.
-   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2004-2005, 2009-2013 Free Software Foundation, Inc.
    Written by Simon Josefsson.
 
-   This program is free software; you can redistribute it and/or modify
+   This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2, or (at your option)
-   any later version.
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
-   You should have received a copy of the GNU General Public License along
-   with this program; if not, write to the Free Software Foundation,
-   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include <config.h>
 
 #include <stdlib.h>
 #include <stdio.h>
@@ -40,9 +41,9 @@ int main (int ac, char *av[])
       size_t len = 0;
       printf ("Enter string to convert:\n\t> ");
       if (getline (&in, &len, stdin) < 0)
-       perror ("getline");
+        perror ("getline");
       if (in[strlen (in) - 1] == '\n')
-       in[strlen (in) - 1] = '\0';
+        in[strlen (in) - 1] = '\0';
     }
 
   if (!to)
@@ -50,9 +51,9 @@ int main (int ac, char *av[])
       size_t len = 0;
       printf ("Enter destination code set:\n\t> ");
       if (getline (&to, &len, stdin) < 0)
-       perror ("getline");
+        perror ("getline");
       if (to[strlen (to) - 1] == '\n')
-       to[strlen (to) - 1] = '\0';
+        to[strlen (to) - 1] = '\0';
     }
 
   if (!from)
@@ -60,15 +61,15 @@ int main (int ac, char *av[])
       size_t len = 0;
       printf ("Enter source code set:\n\t> ");
       if (getline (&from, &len, stdin) < 0)
-       perror ("getline");
+        perror ("getline");
       if (from[strlen (from) - 1] == '\n')
-       from[strlen (from) - 1] = '\0';
+        from[strlen (from) - 1] = '\0';
     }
 
-  printf (" Input string: `%s'\n"
-         "From code set: `%s'\n"
-         "  To code set: `%s'\n",
-         in, from, to);
+  printf (" Input string: '%s'\n"
+          "From code set: '%s'\n"
+          "  To code set: '%s'\n",
+          in, from, to);
 
   out = iconv_string (in, from, to);
 
@@ -76,7 +77,7 @@ int main (int ac, char *av[])
     perror ("iconv");
   else
     {
-      printf ("\nOutput: `%s'\n", out);
+      printf ("\nOutput: '%s'\n", out);
       free (out);
     }