This file is indexed.

/usr/include/ncbi/seqscrl.h is in libvibrant6-dev 6.1.20120620-7.

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
31
32
33
34
35
36
37
38
#ifndef _SEQSCRL_
#define _SEQSCRL_

#include <objseq.h>
#include <picture.h>
#include <viewer.h>
#include <seqgraph.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef struct seqscroll
{
  WindoW                w;
  BaR                   br;
  TexT                  pc;
  Int2                  curval, maxval, minval;
  BioseqPtr             bsp;
  GraphViewFormPtr      gvp;
  FloatHiPtr            scr;
  CharPtr               res;
  Uint1                 filtertype;
  struct seqscroll PNTR next;
} SeqScrollData, PNTR SeqScrollDataPtr;

extern SeqScrollDataPtr SeqScrollDataNew (Int4 score_number);
extern SeqScrollDataPtr SeqScrollDataFree (SeqScrollDataPtr ssdp);
extern void TextScrollWindowNew (SeqScrollDataPtr ssdp, GrouP g);
extern void AddScrollControl (SeqScrollDataPtr PNTR ssdp, GrouP g,
                              Int2 cur, Int2 min, Int2 max,
                              Int4 score_number);

#ifdef __cplusplus
}
#endif

#endif