This file is indexed.

/usr/include/hunspell/w_char.hxx is in libhunspell-dev 1.3.2-6ubuntu2.

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
#ifndef __WCHARHXX__
#define __WCHARHXX__

#ifndef GCC
typedef struct {
#else
typedef struct __attribute__ ((packed)) {
#endif
    unsigned char l;
    unsigned char h;
} w_char;

// two character arrays
struct replentry {
  char * pattern;
  char * pattern2;
  bool start;
  bool end;
};

#endif