file_info.h 463 B

123456789101112131415161718
  1. /* $Id$ */
  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. struct file_info {
  8. unsigned int fil_lino;
  9. char *fil_name;
  10. char *fil_wdir;
  11. };
  12. #define LineNumber finfo.fil_lino
  13. #define FileName finfo.fil_name
  14. #define WorkingDir finfo.fil_wdir
  15. extern struct file_info finfo; /* input.c */