Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / test / locale / sort-test.pl
blobaedfa22c88fb2243ebf39b6d3ae0da4f092e95f2
1 #! /usr/bin/perl
2 use locale;
4 open(INFILE, "<$ARGV[0]");
5 chop(my(@words) = <INFILE>);
6 close(INFILE);
8 $"="\n";
9 my(@result) = sort @words;
11 print "@result\n";