This file is indexed.

/usr/include/libr/r2naked.h is in libradare2-dev 2.3.0+dfsg-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 R2_NAKED_H
#define R2_NAKED_H

#ifdef __cplusplus
extern "C" {
#endif

void *r_core_new(void);
char *r_core_cmd_str(void *p, const char *cmd);
void r_core_free(void* core);
void free(void*);

#ifdef __cplusplus
}
#endif

#endif