doc: use ASCII in .texi files where UTF-8 isn't needed
[gnulib.git] / tests / test-iconvme.c
index 58e8c5c..106380e 100644 (file)
@@ -1,5 +1,5 @@
 /* Recode strings between character sets, using iconv.
-   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2004-2005, 2009-2014 Free Software Foundation, Inc.
    Written by Simon Josefsson.
 
    This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
    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>
 
@@ -39,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)
@@ -49,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)
@@ -59,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);
 
@@ -75,7 +77,7 @@ int main (int ac, char *av[])
     perror ("iconv");
   else
     {
-      printf ("\nOutput: `%s'\n", out);
+      printf ("\nOutput: '%s'\n", out);
       free (out);
     }