This file is indexed.

/usr/include/orc-0.4/orc/orcbytecode.h is in liborc-0.4-dev 1:0.4.28-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
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef _ORC_BYTECODE_H_
#define _ORC_BYTECODE_H_

#include <orc/orcutils.h>
#include <orc/orcbytecodes.h>

ORC_BEGIN_DECLS

typedef struct _OrcBytecode OrcBytecode;

struct _OrcBytecode {
  /*< private >*/
  orc_uint8 *bytecode;
  int length;
  int alloc_len;
};


#ifdef ORC_ENABLE_UNSTABLE_API

OrcBytecode * orc_bytecode_new (void);
void orc_bytecode_free (OrcBytecode *bytecode);
OrcBytecode * orc_bytecode_from_program (OrcProgram *p);
int orc_bytecode_parse_function (OrcProgram *program, const orc_uint8 *bytecode);

#endif

ORC_END_DECLS

#endif