This file is indexed.

/usr/include/nodejs/src/node_i18n.h is in nodejs-dev 4.8.2~dfsg-1.

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

#include "node.h"

#if defined(NODE_HAVE_I18N_SUPPORT)

namespace node {
namespace i18n {

bool InitializeICUDirectory(const char* icu_data_path);

}  // namespace i18n
}  // namespace node

#endif  // NODE_HAVE_I18N_SUPPORT

#endif  // SRC_NODE_I18N_H_