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-comlin.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  77 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                     A D A . C O M M A N D _ L I N E                      --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. with System;
  27. package body Ada.Command_Line is
  28.  
  29.    function Arg_Count return Natural;
  30.    pragma Import (C, Arg_Count, "arg_count");
  31.  
  32.    procedure Fill_Arg (A : System.Address; Arg_Num : Integer);
  33.    pragma Interface (C, Fill_Arg);
  34.  
  35.    function Len_Arg (Arg_Num : Integer) return Integer;
  36.    pragma Interface (C, Len_Arg);
  37.  
  38.    --------------------
  39.    -- Argument_Count --
  40.    --------------------
  41.  
  42.    function Argument_Count return Natural is
  43.    begin
  44.       return Arg_Count - 1;
  45.    end Argument_Count;
  46.  
  47.    --------------
  48.    -- Argument --
  49.    --------------
  50.  
  51.    function Argument (Number : in Positive) return String is
  52.    begin
  53.       if Number > Argument_Count then
  54.          raise Constraint_Error;
  55.       end if;
  56.  
  57.       declare
  58.          Arg : aliased String (1 .. Len_Arg (Number));
  59.       begin
  60.          Fill_Arg (Arg'Address, Number);
  61.          return Arg;
  62.       end;
  63.    end Argument;
  64.  
  65.    ------------------
  66.    -- Command_Name --
  67.    ------------------
  68.  
  69.    function Command_Name return String is
  70.       Arg : aliased String (1 .. Len_Arg (0));
  71.    begin
  72.       Fill_Arg (Arg'Address, 0);
  73.       return Arg;
  74.    end Command_Name;
  75.  
  76. end Ada.Command_Line;
  77.