ack/lang/m2/comp/f_info.h

22 lines
503 B
C
Raw Normal View History

/*
* (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
*/
1986-03-26 15:11:02 +00:00
/* 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$ */
1986-03-20 14:52:03 +00:00
struct f_info {
1986-05-23 19:25:21 +00:00
unsigned short f_lineno;
1986-03-20 14:52:03 +00:00
char *f_filename;
char *f_workingdir;
};
extern struct f_info file_info;
#define LineNumber file_info.f_lineno
#define FileName file_info.f_filename
#define WorkingDir file_info.f_workingdir