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 / str.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  7KB  |  217 lines

  1. /* str.c -- Implementation File (module.c 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.    Related Modules:
  22.       None
  23.  
  24.    Description:
  25.       Handles recognition of keywords.
  26.  
  27.    Modifications:
  28. */
  29.  
  30. /* Include files. */
  31.  
  32. #include "proj.h"
  33. #include "src.h"
  34. #include "str.h"
  35. #include "lex.h"
  36.  
  37. /* Externals defined here. */
  38.  
  39.  
  40. /* Simple definitions and enumerations. */
  41.  
  42.  
  43. /* Internal typedefs. */
  44.  
  45.  
  46. /* Private include files. */
  47.  
  48.  
  49. /* Internal structure definitions. */
  50.  
  51.  
  52. /* Static objects accessed by functions in this module. */
  53.  
  54.  
  55. /* Static functions (internal). */
  56.  
  57.  
  58. /* Internal macros. */
  59.  
  60.  
  61. /* ffestr_first -- Look up the first names in a statement
  62.  
  63.    ffestrFirst kw;
  64.    ffelexToken t;
  65.    kw = ffestr_first(t);
  66.  
  67.    Returns FFESTR_firstNone if no matches, else FFESTR_firstXYZ if the
  68.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  69.    routine will crash.
  70.  
  71.    This routine's code is actually written by a utility called FINI, itself
  72.    written specifically for the Gnu Fortran project.  FINI takes an input
  73.    file, in this case "ffe_first.fini", consisting primarily of a
  74.    list of statements (ASSIGN, IF, DO, DOWHILE), and outputs a C file,
  75.    "str-1t.j", that contains the definition of the
  76.    ffestr_first function.  We #include that file here.
  77.  
  78.    30-Jan-90  JCB  2.0
  79.       Updated for Fortran 90.
  80. */
  81.  
  82. #ifndef MAKING_DEPENDENCIES
  83. #include "str-1t.j"
  84. #endif
  85. /* ffestr_format -- Look up format names in a statement
  86.  
  87.    ffestrFormat kw;
  88.    ffelexToken t;
  89.    kw = ffestr_format(t);
  90.  
  91.    Returns FFESTR_formatNone if no matches, else FFESTR_formatXYZ if the
  92.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  93.    routine will crash.
  94.  
  95.    This routine's code is actually written by a utility called FINI, itself
  96.    written specifically for the Gnu Fortran project.  FINI takes an input
  97.    file, in this case "ffe_format.fini", consisting primarily of a
  98.    list of format keywords (I, F, TL, TR), and outputs a C file,
  99.    "str-fo.j", that contains the definition of the
  100.    ffestr_format function.  We #include that file here.
  101.  
  102. */
  103.  
  104. #ifndef MAKING_DEPENDENCIES
  105. #include "str-fo.j"
  106. #endif
  107. /* ffestr_genio -- Look up genio names in a statement
  108.  
  109.    ffestrGenio kw;
  110.    ffelexToken t;
  111.    kw = ffestr_genio(t);
  112.  
  113.    Returns FFESTR_genioNone if no matches, else FFESTR_genioXYZ if the
  114.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  115.    routine will crash.
  116.  
  117.    This routine's code is actually written by a utility called FINI, itself
  118.    written specifically for the Gnu Fortran project.  FINI takes an input
  119.    file, in this case "ffe_genio.fini", consisting primarily of a
  120.    list of statement keywords (TO, FUNCTION), and outputs a C file,
  121.    "str-io.j", that contains the definition of the
  122.    ffestr_genio function.  We #include that file here.
  123.  
  124. */
  125.  
  126. #ifndef MAKING_DEPENDENCIES
  127. #include "str-io.j"
  128. #endif
  129. /* ffestr_inquire -- Look up inquire names in a statement
  130.  
  131.    ffestrInquire kw;
  132.    ffelexToken t;
  133.    kw = ffestr_inquire(t);
  134.  
  135.    Returns FFESTR_inquireNone if no matches, else FFESTR_inquireXYZ if the
  136.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  137.    routine will crash.
  138.  
  139.    This routine's code is actually written by a utility called FINI, itself
  140.    written specifically for the Gnu Fortran project.  FINI takes an input
  141.    file, in this case "ffe_inquire.fini", consisting primarily of a
  142.    list of statement keywords (TO, FUNCTION), and outputs a C file,
  143.    "str-nq.j", that contains the definition of the
  144.    ffestr_inquire function.  We #include that file here.
  145.  
  146. */
  147.  
  148. #ifndef MAKING_DEPENDENCIES
  149. #include "str-nq.j"
  150. #endif
  151. /* ffestr_open -- Look up open names in a statement
  152.  
  153.    ffestrOpen kw;
  154.    ffelexToken t;
  155.    kw = ffestr_open(t);
  156.  
  157.    Returns FFESTR_openNone if no matches, else FFESTR_openXYZ if the
  158.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  159.    routine will crash.
  160.  
  161.    This routine's code is actually written by a utility called FINI, itself
  162.    written specifically for the Gnu Fortran project.  FINI takes an input
  163.    file, in this case "ffe_open.fini", consisting primarily of a
  164.    list of statement keywords (TO, FUNCTION), and outputs a C file,
  165.    "str-op.j", that contains the definition of the
  166.    ffestr_open function.  We #include that file here.
  167.  
  168. */
  169.  
  170. #ifndef MAKING_DEPENDENCIES
  171. #include "str-op.j"
  172. #endif
  173. /* ffestr_other -- Look up other names in a statement
  174.  
  175.    ffestrOther kw;
  176.    ffelexToken t;
  177.    kw = ffestr_other(t);
  178.  
  179.    Returns FFESTR_otherNone if no matches, else FFESTR_otherXYZ if the
  180.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  181.    routine will crash.
  182.  
  183.    This routine's code is actually written by a utility called FINI, itself
  184.    written specifically for the Gnu Fortran project.  FINI takes an input
  185.    file, in this case "ffe_other.fini", consisting primarily of a
  186.    list of statement keywords (TO, FUNCTION), and outputs a C file,
  187.    "str-ot.j", that contains the definition of the
  188.    ffestr_other function.  We #include that file here.
  189.  
  190. */
  191.  
  192. #ifndef MAKING_DEPENDENCIES
  193. #include "str-ot.j"
  194. #endif
  195. /* ffestr_second -- Look up the second name in a statement
  196.  
  197.    ffestrSecond kw;
  198.    ffelexToken t;
  199.    kw = ffestr_second(t);
  200.  
  201.    Returns FFESTR_secondNone if no matches, else FFESTR_secondXYZ if the
  202.    NAME or NAMES token matches XYZ.  t must be a NAME or NAMES token or this
  203.    routine will crash.
  204.  
  205.    This routine's code is actually written by a utility called FINI, itself
  206.    written specifically for the Gnu Fortran project.  FINI takes an input
  207.    file, in this case "ffe_second.fini", consisting primarily of a
  208.    list of statement keywords (TO, FUNCTION), and outputs a C file,
  209.    "str-2t.j", that contains the definition of the
  210.    ffestr_second function.  We #include that file here.
  211.  
  212. */
  213.  
  214. #ifndef MAKING_DEPENDENCIES
  215. #include "str-2t.j"
  216. #endif
  217.