home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / f / where.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  5KB  |  140 lines

  1. /* where.h -- Public #include File (module.h template V1.0)
  2.    Copyright (C) 1995 Free Software Foundation, Inc.
  3.    Contributed by James Craig Burley (burley@gnu.ai.mit.edu).
  4.  
  5. This file is part of GNU Fortran.
  6.  
  7. GNU Fortran is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU Fortran is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Fortran; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    Owning Modules:
  22.       where.c
  23.  
  24.    Modifications:
  25. */
  26.  
  27. /* Allow multiple inclusion to work. */
  28.  
  29. #ifndef _H_f_where
  30. #define _H_f_where
  31.  
  32. /* Simple definitions and enumerations. */
  33.  
  34. #define FFEWHERE_columnMAX UCHAR_MAX
  35. #define FFEWHERE_columnUNKNOWN 0
  36. #define FFEWHERE_indexMAX 36
  37. #define FFEWHERE_indexUNKNOWN UCHAR_MAX
  38. #define FFEWHERE_lineMAX ULONG_MAX
  39. #define FFEWHERE_lineUNKNOWN (&ffewhere_unknown_line_)
  40. #define FFEWHERE_filenameUNKNOWN ("(input file)")
  41.  
  42. /* Typedefs. */
  43.  
  44. typedef unsigned char ffewhereColumnNumber;    /* Change FFEWHERE_columnMAX
  45.                            too. */
  46. #define ffewhereColumnNumber_f ""
  47. typedef unsigned char ffewhereColumn;
  48. typedef struct _ffewhere_file_ *ffewhereFile;
  49. typedef unsigned short ffewhereLength_;
  50. #define ffewhereLength_f_ ""
  51. typedef unsigned long ffewhereLineNumber;    /* Change FFEWHERE_lineMAX
  52.                            too. */
  53. #define ffewhereLineNumber_f "l"
  54. typedef struct _ffewhere_line_ *ffewhereLine;
  55. typedef unsigned char ffewhereIndex;
  56. #define ffewhereIndex_f ""
  57. typedef ffewhereIndex ffewhereTrack[FFEWHERE_indexMAX * 2 - 2];
  58. typedef unsigned int ffewhereUses_;
  59. #define ffewhereUses_f_ ""
  60.  
  61. /* Include files needed by this one. */
  62.  
  63. #include "glimits.j"
  64. #include "top.h"
  65.  
  66. /* Structure definitions. */
  67.  
  68. struct _ffewhere_file_
  69.   {
  70.     size_t length;
  71.     char text[1];
  72.   };
  73.  
  74. struct _ffewhere_line_
  75.   {
  76.     ffewhereLine next;
  77.     ffewhereLine previous;
  78.     ffewhereLineNumber line_num;
  79.     ffewhereUses_ uses;
  80.     ffewhereLength_ length;
  81.     char content[1];
  82.   };
  83.  
  84. /* Global objects accessed by users of this module. */
  85.  
  86. extern struct _ffewhere_line_ ffewhere_unknown_line_;
  87.  
  88. /* Declare functions with prototypes. */
  89.  
  90. void ffewhere_file_begin (ffewhereFile old_wf, ffewhereFile new_wf);
  91. void ffewhere_file_end (ffewhereFile new_wf, ffewhereFile old_wf);
  92. void ffewhere_file_kill (ffewhereFile wf);
  93. ffewhereFile ffewhere_file_new (char *name, size_t length);
  94. void ffewhere_file_set (ffewhereFile wf, bool have_num, ffewhereLineNumber ln);
  95. void ffewhere_init_1 (void);
  96. char *ffewhere_line_content (ffewhereLine l);
  97. ffewhereFile ffewhere_line_file (ffewhereLine l);
  98. ffewhereLineNumber ffewhere_line_filelinenum (ffewhereLine l);
  99. void ffewhere_line_kill (ffewhereLine l);
  100. ffewhereLine ffewhere_line_new (ffewhereLineNumber ln);
  101. ffewhereLine ffewhere_line_use (ffewhereLine wl);
  102. void ffewhere_set_from_track (ffewhereLine *wol, ffewhereColumn *woc,
  103.              ffewhereLine wrl, ffewhereColumn wrc, ffewhereTrack wt,
  104.                   ffewhereIndex i);
  105. void ffewhere_track (ffewhereLine *wl, ffewhereColumn *wc, ffewhereTrack wt,
  106.        ffewhereIndex i, ffewhereLineNumber ln, ffewhereColumnNumber cn);
  107. void ffewhere_track_clear (ffewhereTrack wt, ffewhereIndex length);
  108. void ffewhere_track_copy (ffewhereTrack dwt, ffewhereTrack swt,
  109.               ffewhereIndex start, ffewhereIndex length);
  110. void ffewhere_track_kill (ffewhereLine wrl, ffewhereColumn wrc, ffewhereTrack wt,
  111.               ffewhereIndex length);
  112.  
  113. /* Define macros. */
  114.  
  115. #define ffewhere_column_is_unknown(c) (c == FFEWHERE_columnUNKNOWN)
  116. #define ffewhere_column_kill(c) ((void) 0)
  117. #define ffewhere_column_new(cn) (cn)
  118. #define ffewhere_column_number(c) (c)
  119. #define ffewhere_column_unknown() (FFEWHERE_columnUNKNOWN)
  120. #define ffewhere_column_use(c) (c)
  121. #define ffewhere_file_name(f) ((f)->text)
  122. #define ffewhere_file_namelen(f) ((f)->length)
  123. #define ffewhere_init_0()
  124. #define ffewhere_init_2()
  125. #define ffewhere_init_3()
  126. #define ffewhere_init_4()
  127. #define ffewhere_line_filename(l) (ffewhere_line_file(l)->text)
  128. #define ffewhere_line_is_unknown(l) (l == FFEWHERE_lineUNKNOWN)
  129. #define ffewhere_line_number(l) ((l)->line_num)
  130. #define ffewhere_line_unknown() (FFEWHERE_lineUNKNOWN)
  131. #define ffewhere_terminate_0()
  132. #define ffewhere_terminate_1()
  133. #define ffewhere_terminate_2()
  134. #define ffewhere_terminate_3()
  135. #define ffewhere_terminate_4()
  136.  
  137. /* End of #include file. */
  138.  
  139. #endif
  140.