summaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2008-12-29 20:43:30 +0100
committerNatanael Copa <natanael.copa@gmail.com>2008-12-29 20:43:30 +0100
commit616a7d3f8ab4856469b29f34328ea07161911676 (patch)
tree16f43496155845c5cf21be67b7b0735a71e36a10 /test.c
parented43e815dff29308732d1f3f66f63c6e0a3b4c40 (diff)
downloaduiconv-616a7d3f8ab4856469b29f34328ea07161911676.tar.bz2
uiconv-616a7d3f8ab4856469b29f34328ea07161911676.tar.xz
support for alternative names of code sets
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index 4638a4a..5d22d35 100644
--- a/test.c
+++ b/test.c
@@ -55,7 +55,7 @@ void convert_args(char *from, char *to, int argc, char **argv)
int main(int argc, char **argv)
{
- char *codesets[] = { "ASCII", "ISO-8859-1", "UTF-8", "invalid", NULL };
+ char *codesets[] = { "ASCII", "ISO-8859-1", "iso8859-1", "UTF-8", "utf8", "invalid", NULL };
char **from, **to;
for (from = codesets; *from; from++)