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 / a-tienau.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  64 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --          A D A . T E X T _ I O . E N U M E R A T I O N _ A U X           --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package contains the routines for Ada.Text_IO.Enumeration_IO
  27. --  that are shared among separate instantiations of this package.
  28.  
  29. private package Ada.Text_IO.Enumeration_Aux is
  30.  
  31.    procedure Get_Enum_Lit
  32.      (File   : File_Type;
  33.       Buf    : out String;
  34.       Buflen : out Natural);
  35.    --  Reads an enumeration literal value from the file, folds to upper case,
  36.    --  and stores the result in Buf, setting Buflen to the number of stored
  37.    --  characters (Buf has a lower bound of 1). If more than Buflen characters
  38.    --  are present in the literal, Data_Error is raised.
  39.  
  40.    procedure Scan_Enum_Lit
  41.      (From  : String;
  42.       Start : out Natural;
  43.       Stop  : out Natural);
  44.    --  Scans an enumeration literal at the start of From, skipping any leading
  45.    --  spaces. Sets Start to the first character, Stop to the last character.
  46.    --  Raises End_Error if no enumeration literal is found.
  47.  
  48.    procedure Put
  49.      (File  : File_Type;
  50.       Item  : String;
  51.       Width : Field;
  52.       Set   : Type_Set);
  53.    --  Outputs the enumeration literal image stored in Item to the given File,
  54.    --  using the given Width and Set parameters (Item is always in upper case).
  55.  
  56.    procedure Puts
  57.      (To    : out String;
  58.       Item  : in String;
  59.       Set   : Type_Set);
  60.    --  Stores the enumeration literal image stored in Item to the string To,
  61.    --  padding with trailing spaces if necessary to fill To. Set is used to
  62.  
  63. end Ada.Text_IO.Enumeration_Aux;
  64.