/usr/include/dparser/mkdparse.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 19 20 21 | /*
Copyright 2002-2004 John Plevyak, All Rights Reserved
*/
#ifndef _mkdparse_H_
#define _mkdparse_H_
#include <stdlib.h>
#if defined(__cplusplus)
extern "C" {
#endif
struct Grammar;
void mkdparse(struct Grammar *g, char *grammar_pathname);
void mkdparse_from_string(struct Grammar *g, char *str);
#if defined(__cplusplus)
}
#endif
#endif
|