ack/lang/m2/m2mm/f_info.h

22 lines
491 B
C
Raw Normal View History

1987-09-24 13:01:27 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
/* F I L E D E S C R I P T O R S T R U C T U R E */
1994-06-24 14:02:31 +00:00
/* $Id$ */
1987-09-24 13:01:27 +00:00
struct f_info {
unsigned short f_lineno;
1988-02-17 17:21:51 +00:00
char *f_fn;
1987-09-24 13:01:27 +00:00
char *f_workingdir;
};
extern struct f_info file_info;
#define LineNumber file_info.f_lineno
1988-02-17 17:21:51 +00:00
#define FileName file_info.f_fn
1987-09-24 13:01:27 +00:00
#define WorkingDir file_info.f_workingdir