X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-iconvme.c;h=38165f7dfc2293a7e0324e3f86cb1dab4e886e37;hb=a9418e02e6cb59bfa004896c661d949f8b705209;hp=3cf26c831955c80ef3361ff3cba39bfe9a985a58;hpb=c571b02a40485aa46e146a68d6d47eca71a4b477;p=gnulib.git diff --git a/tests/test-iconvme.c b/tests/test-iconvme.c index 3cf26c831..38165f7df 100644 --- a/tests/test-iconvme.c +++ b/tests/test-iconvme.c @@ -1,5 +1,5 @@ /* Recode strings between character sets, using iconv. - Copyright (C) 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2004-2005, 2009-2011 Free Software Foundation, Inc. Written by Simon Josefsson. This program is free software: you can redistribute it and/or modify @@ -41,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) @@ -51,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) @@ -61,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); + "From code set: `%s'\n" + " To code set: `%s'\n", + in, from, to); out = iconv_string (in, from, to);