This file is indexed.

/usr/lib/ruby/vendor_ruby/uconv/eucjp-unicode.rb is in ruby-uconv 0.6.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## Uconv/EUCJP-Unicode
## Copyright 2004 by yoshidam
##

require 'uconv'

module Uconv
  EUCJP_UNICODE_UCS_MAP = {
    "\xa1\xc0"=>0x005c
  }
  UCS_EUCJP_UNICODE_MAP = {
     0xff3c=>""
  }


  def self.eucjp_unicode()
    self.euc_hook = proc do |e|
      EUCJP_UNICODE_UCS_MAP[e]
    end

    self.unicode_euc_hook = proc do |u|
      UCS_EUCJP_UNICODE_MAP[u]
    end
  end
end

Uconv.eucjp_unicode