Changeset 23830 for test-collections
- Timestamp:
- 2011-03-28T15:10:40+13:00 (12 years ago)
- Location:
- test-collections/trunk/filename-encodings/bin/script
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test-collections/trunk/filename-encodings/bin/script/dirlist.pl
r23464 r23830 7 7 { 8 8 join("", 9 map { $_ > 12 8? # if wide character...9 map { $_ > 127 ? # if wide character... 10 10 sprintf("\\x{%04X}", $_) : # \x{...} 11 11 chr($_) -
test-collections/trunk/filename-encodings/bin/script/isutf8.pl
r23325 r23830 17 17 { 18 18 join("", 19 map { $_ > 12 8? # if wide character...19 map { $_ > 127 ? # if wide character... 20 20 sprintf("\\x{%04X}", $_) : # \x{...} 21 21 chr($_)
Note:
See TracChangeset
for help on using the changeset viewer.