Pristine Ack-5.5
[Ack-5.5.git] / util / cpp / file_info.h
1 /* $Id: file_info.h,v 1.6 1994/06/24 10:18:18 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 /* F I L E   I N F O R M A T I O N   S T R U C T U R E */
7
8 struct file_info {
9         unsigned int    fil_lino;
10         char            *fil_name;
11         char            *fil_wdir;
12 };
13
14 #define LineNumber      finfo.fil_lino
15 #define FileName        finfo.fil_name
16 #define WorkingDir      finfo.fil_wdir
17
18 extern struct file_info finfo;  /* input.c */