Convert some lines from ISO-8859-1 to UTF-8.

perl -i -pe 'use Text::Iconv;
$c1 = Text::Iconv->new("utf-8", "utf-8");
$c2 = Text::Iconv->new("iso-8859-1", "utf-8");
if (!$c1->convert($_)) { $_ = $c2->convert($_); }' \
`find * -type f`
This commit is contained in:
Edmund Grimley Evans
2015-03-08 22:07:50 +00:00
parent 5de8b5638f
commit aa812e8745
4 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
/*
* ARMv4 code generator for TCC
*
* Copyright (c) 2003 Daniel Gl<EFBFBD>ckner
* Copyright (c) 2003 Daniel Glöckner
* Copyright (c) 2012 Thomas Preud'homme
*
* Based on i386-gen.c by Fabrice Bellard