OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / mdll-fil.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                            M D L L . F I L E S                           --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                                                                          --
10 --          Copyright (C) 1992-2001 Free Software Foundation, Inc.          --
11 --                                                                          --
12 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- GNAT was originally developed  by the GNAT team at  New York University. --
24 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
25 --                                                                          --
26 ------------------------------------------------------------------------------
27
28 --  Simple services used by GNATDLL to deal with Filename extension
29
30 package MDLL.Fil is
31
32    No_Ext : constant String := "";
33    --  Used to mark the absence of an extension
34
35    function Get_Ext (Filename : String) return String;
36    --  Return extension of Filename
37
38    function Is_Ali (Filename : String) return Boolean;
39    --  Test if Filename is an Ada library file (.ali).
40
41    function Is_Obj (Filename : String) return Boolean;
42    --  Test if Filename is an object file (.o or .obj)
43
44    function Ext_To
45      (Filename : String;
46       New_Ext  : String := No_Ext)
47       return     String;
48    --  Return Filename with the extension change to New_Ext
49
50 end MDLL.Fil;