home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / switch.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  55 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               S W I T C H                                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.12 $                             --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This package scans switches. Note that the body of Usage must be
  26. --  coordinated with the switches that are recognized by this package.
  27. --  The Usage package also acts as the official documentation for the
  28. --  switches that are recognized. In addition, package Debug documents
  29. --  the otherwise undocumented debug switches that are also recognized.
  30.  
  31. package Switch is
  32.  
  33.    --  Note: The default switch character is indicated by Switch_Character,
  34.    --  but regardless of what it is, a hyphen is always allowed as an
  35.    --  (alternative) switch character.
  36.  
  37.    --  Note: In GNAT, the case of switches is not significant if
  38.    --  Switches_Case_Sensitive is False. If this is the case, switch
  39.    --  characters, or letters appearing in the parameter to a switch, may be
  40.    --  either upper case or lower case.
  41.  
  42.    -----------------
  43.    -- Subprograms --
  44.    -----------------
  45.  
  46.    procedure Scan_Switches (Switch_Chars : String);
  47.    --  Procedure to scan out switches stored in the given string. The first
  48.    --  character is known to be a valid switch character, and there are no
  49.    --  blanks or other switch terminator characters in the string, so the
  50.    --  entire string should consist of valid switch characters, except that
  51.    --  an optional terminating NUL character is allowed. A bad switch causes
  52.    --  a fatal error exit and control does not return.
  53.  
  54. end Switch;
  55.