This file is indexed.

/usr/include/namazu/re.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
#ifndef _RE_H
#define _RE_H

#include "libnamazu.h" /* for NmzResult struct */

#define ALLOC_N(type,n) (type*)nmz_xmalloc(sizeof(type)*(n))
#define ALLOC(type) (type*)nmz_xmalloc(sizeof(type))
#define MEMZERO(p,type,n) memset((p), 0, sizeof(type)*(n))

extern NmzResult nmz_regex_grep ( const char *expr, FILE *fp, const char *field, int field_mode );

#endif /* _RE_H */