~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/admin-guide/cifs/winucase_convert.pl

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/admin-guide/cifs/winucase_convert.pl (Architecture ppc) and /Documentation/admin-guide/cifs/winucase_convert.pl (Architecture alpha)


  1 #!/usr/bin/perl -w                                  1 #!/usr/bin/perl -w
  2 #                                                   2 #
  3 # winucase_convert.pl -- convert "Windows 8 Up      3 # winucase_convert.pl -- convert "Windows 8 Upper Case Mapping Table.txt" to
  4 #                        a two-level set of C       4 #                        a two-level set of C arrays.
  5 #                                                   5 #
  6 #   Copyright 2013: Jeff Layton <jlayton@redhat      6 #   Copyright 2013: Jeff Layton <jlayton@redhat.com>
  7 #                                                   7 #
  8 #   This program is free software: you can red      8 #   This program is free software: you can redistribute it and/or modify
  9 #   it under the terms of the GNU General Publ      9 #   it under the terms of the GNU General Public License as published by
 10 #   the Free Software Foundation, either versi     10 #   the Free Software Foundation, either version 3 of the License, or
 11 #   (at your option) any later version.            11 #   (at your option) any later version.
 12 #                                                  12 #
 13 #   This program is distributed in the hope th     13 #   This program is distributed in the hope that it will be useful,
 14 #   but WITHOUT ANY WARRANTY; without even the     14 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
 15 #   MERCHANTABILITY or FITNESS FOR A PARTICULA     15 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 16 #   GNU General Public License for more detail     16 #   GNU General Public License for more details.
 17 #                                                  17 #
 18 #   You should have received a copy of the GNU     18 #   You should have received a copy of the GNU General Public License
 19 #   along with this program.  If not, see <htt     19 #   along with this program.  If not, see <https://www.gnu.org/licenses/>.
 20 #                                                  20 #
 21                                                    21 
 22 while(<>) {                                        22 while(<>) {
 23         next if (!/^0x(..)(..)\t0x(....)\t/);      23         next if (!/^0x(..)(..)\t0x(....)\t/);
 24         $firstchar = hex($1);                      24         $firstchar = hex($1);
 25         $secondchar = hex($2);                     25         $secondchar = hex($2);
 26         $uppercase = hex($3);                      26         $uppercase = hex($3);
 27                                                    27 
 28         $top[$firstchar][$secondchar] = $upper     28         $top[$firstchar][$secondchar] = $uppercase;
 29 }                                                  29 }
 30                                                    30 
 31 for ($i = 0; $i < 256; $i++) {                     31 for ($i = 0; $i < 256; $i++) {
 32         next if (!$top[$i]);                       32         next if (!$top[$i]);
 33                                                    33 
 34         printf("static const wchar_t t2_%2.2x[     34         printf("static const wchar_t t2_%2.2x[256] = {", $i);
 35         for ($j = 0; $j < 256; $j++) {             35         for ($j = 0; $j < 256; $j++) {
 36                 if (($j % 8) == 0) {               36                 if (($j % 8) == 0) {
 37                         print "\n\t";              37                         print "\n\t";
 38                 } else {                           38                 } else {
 39                         print " ";                 39                         print " ";
 40                 }                                  40                 }
 41                 printf("0x%4.4x,", $top[$i][$j     41                 printf("0x%4.4x,", $top[$i][$j] ? $top[$i][$j] : 0);
 42         }                                          42         }
 43         print "\n};\n\n";                          43         print "\n};\n\n";
 44 }                                                  44 }
 45                                                    45 
 46 printf("static const wchar_t *const toplevel[2     46 printf("static const wchar_t *const toplevel[256] = {", $i);
 47 for ($i = 0; $i < 256; $i++) {                     47 for ($i = 0; $i < 256; $i++) {
 48         if (($i % 8) == 0) {                       48         if (($i % 8) == 0) {
 49                 print "\n\t";                      49                 print "\n\t";
 50         } elsif ($top[$i]) {                       50         } elsif ($top[$i]) {
 51                 print " ";                         51                 print " ";
 52         } else {                                   52         } else {
 53                 print "  ";                        53                 print "  ";
 54         }                                          54         }
 55                                                    55 
 56         if ($top[$i]) {                            56         if ($top[$i]) {
 57                 printf("t2_%2.2x,", $i);           57                 printf("t2_%2.2x,", $i);
 58         } else {                                   58         } else {
 59                 print "NULL,";                     59                 print "NULL,";
 60         }                                          60         }
 61 }                                                  61 }
 62 print "\n};\n\n";                                  62 print "\n};\n\n";
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php