f_info.h 503 B

123456789101112131415161718192021
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. *
  5. * Author: Ceriel J.H. Jacobs
  6. */
  7. /* F I L E D E S C R I P T O R S T R U C T U R E */
  8. /* $Id$ */
  9. struct f_info {
  10. unsigned short f_lineno;
  11. char *f_filename;
  12. char *f_workingdir;
  13. };
  14. extern struct f_info file_info;
  15. #define LineNumber file_info.f_lineno
  16. #define FileName file_info.f_filename
  17. #define WorkingDir file_info.f_workingdir