/usr/include/dparser/scan.h is in mcrl2 201210.1-1ubuntu1.
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
|