diff options
Diffstat (limited to 'gcc/ada/s-wchwts.ads')
-rw-r--r-- | gcc/ada/s-wchwts.ads | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gcc/ada/s-wchwts.ads b/gcc/ada/s-wchwts.ads index 053d4132fca..936045992df 100644 --- a/gcc/ada/s-wchwts.ads +++ b/gcc/ada/s-wchwts.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-1998 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2005 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -31,9 +31,10 @@ -- -- ------------------------------------------------------------------------------ --- This package contains the routine used to convert wide strings to --- strings for use by wide character attributes (value, image etc.) and --- also by the numeric IO subpackages of Ada.Text_IO.Wide_Text_IO. +-- This package contains the routine used to convert wide strings and wide +-- wide stringsto strings for use by wide and wide wide character attributes +-- (value, image etc.) and also by the numeric IO subpackages of +-- Ada.Text_IO.Wide_Text_IO and Ada.Text_IO.Wide_Wide_Text_IO. with System.WCh_Con; @@ -41,9 +42,8 @@ package System.WCh_WtS is pragma Pure (WCh_WtS); function Wide_String_To_String - (S : Wide_String; - EM : System.WCh_Con.WC_Encoding_Method) - return String; + (S : Wide_String; + EM : System.WCh_Con.WC_Encoding_Method) return String; -- This routine simply takes its argument and converts it to a string, -- using the internal compiler escape sequence convention (defined in -- package Widechar) to translate characters that are out of range @@ -56,4 +56,9 @@ pragma Pure (WCh_WtS); -- Note: in the WCEM_Brackets case, we only use the brackets encoding -- for characters greater than 16#FF#. + function Wide_Wide_String_To_String + (S : Wide_Wide_String; + EM : System.WCh_Con.WC_Encoding_Method) return String; + -- Same processing, except for Wide_Wide_String + end System.WCh_WtS; |