This file is indexed.

/usr/include/dparser/scan.h is in mcrl2 201202.0-2+b1.

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
/*
  Copyright 2002-2004 John Plevyak, All Rights Reserved
*/

#ifndef _scan_H_
#define _scan_H_

#include "d.h"

typedef struct ShiftResult {
  struct SNode	*snode;
  D_Shift 	*shift;
  d_loc_t	loc;
} ShiftResult;

int scan_buffer(d_loc_t *loc, D_State *st, ShiftResult *result);

#endif