This file is indexed.

/usr/include/namazu/field.h is in libnmz7-dev 2.0.21-20+b1.

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

#define FIELD_SAFE_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_."

enum {
    FIELD_CACHE_SIZE = 8        /* Size of field caches */
};

extern int nmz_isfield ( const char *key );
extern char *nmz_get_field_name ( const char *fieldpat );
extern void nmz_get_field_data ( int idxid, int docid, const char *field, char *data );
extern void nmz_free_field_cache ( void );

#endif /* _FIELD_H */