This file is indexed.

/usr/lib/grass72/include/grass/glocale.h is in grass-dev 7.2.0-2.

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

#include <grass/config.h>

#include <grass/defs/glocale.h>

#if defined(HAVE_LIBINTL_H) && defined(USE_NLS)
#include <libintl.h>
#define _(str) G_gettext(PACKAGE,(str))
#define n_(strs,strp,num) G_ngettext(PACKAGE,(strs),(strp),num)
#else
#define _(str) (str)
#define n_(strs,strp,num) ((num == 1) ? (strs) : (strp))
#endif

#endif