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 / s-valdec.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  65 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                       S Y S T E M . V A L _ D E C                        --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  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. with System.Val_Real; use System.Val_Real;
  27.  
  28. package body System.Val_Dec is
  29.  
  30.    ------------------
  31.    -- Scan_Decimal --
  32.    ------------------
  33.  
  34.    --  For decimal types where Size < Integer'Size, it is fine to use
  35.    --  the floating-point circuit, since it certainly has sufficient
  36.    --  precision for any reasonable hardware, and we just don't support
  37.    --  things on junk hardware!
  38.  
  39.    function Scan_Decimal
  40.      (Str   : String;
  41.       Ptr   : access Positive'Base;
  42.       Max   : Positive'Base;
  43.       Scale : Integer)
  44.       return  Integer
  45.    is
  46.       Val : Long_Long_Float;
  47.  
  48.    begin
  49.       Val := Scan_Real (Str, Ptr, Max);
  50.       return Integer (Val * 10.0 ** Scale);
  51.    end Scan_Decimal;
  52.  
  53.    -------------------
  54.    -- Value_Decimal --
  55.    -------------------
  56.  
  57.    --  Again, we use the real circuit for this purpose
  58.  
  59.    function Value_Decimal (Str : String; Scale : Integer) return Integer is
  60.    begin
  61.       return Integer (Value_Real (Str) * 10.0 ** Scale);
  62.    end Value_Decimal;
  63.  
  64. end System.Val_Dec;
  65.