This file is indexed.

/usr/include/astrometry/unpermute-quads.h is in libastrometry-dev 0.70+dfsg-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
/*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
*/

#ifndef UNPERMUTE_QUADS_H
#define UNPERMUTE_QUADS_H

#include "astrometry/quadfile.h"
#include "astrometry/codekd.h"

/**
   \file Applies a code kdtree permutation array to the corresponding
   .quad file to produce new .quad and .ckdt files that are
   consistent and don't require permutation.

   In:  .quad, .ckdt
   Out: .quad, .ckdt

   Original author: dstn
*/
int unpermute_quads_files(const char* quadinfn, const char* ckdtinfn,
						  const char* quadoutfn, const char* ckdtoutfn,
						  char** args, int argc);

int unpermute_quads(quadfile_t* quadin, codetree_t* ckdtin,
					quadfile_t* quadout, codetree_t** ckdtout,
					char** args, int argc);

#endif