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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                                B U T I L                                 --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.5 $                              --
  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. with Types; use Types;
  26.  
  27. package Butil is
  28.  
  29. --  This package contains utility routines for the binder
  30.  
  31.    function Later (T1, T2 : Time_Stamp_Type) return Boolean;
  32.    --  Return True if T1 represents a later time than T2
  33.  
  34.    function Is_Predefined_Unit return Boolean;
  35.    --  Given a unit name stored in Name_Buffer with length in Name_Len,
  36.    --  returns True if this is the name of a predefined unit or a child of
  37.    --  a predefined unit (including the obsolescent renamings). This is used
  38.    --  in the preference selection (see Better_Choice in body of Binde).
  39.  
  40.    function Uname_Less (U1, U2 : Unit_Name_Type) return Boolean;
  41.    --  Determines if the unit name U1 is alphabetically before U2
  42.  
  43.    procedure Write_Unit_Name (U : Unit_Name_Type);
  44.    --  Output unit name with (body) or (spec) after as required. On return
  45.    --  Name_Len is set to the number of characters which were output.
  46.  
  47. end Butil;
  48.