This file is indexed.

/usr/include/orc-0.4/orc-test/orcrandom.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
#ifndef _ORC_RANDOM_H_
#define _ORC_RANDOM_H_

#include <orc/orcutils.h>

ORC_BEGIN_DECLS

typedef struct _OrcRandomContext OrcRandomContext;
struct _OrcRandomContext {
  unsigned int x;
};

void orc_random_init (OrcRandomContext *context, int seed);
void orc_random_bits (OrcRandomContext *context, void *data, int n_bytes);
void orc_random_floats (OrcRandomContext *context, float *data, int n);
unsigned int orc_random (OrcRandomContext *context);

ORC_END_DECLS

#endif