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

  1.  
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . W C H _ C N V                        --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  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. --  This package contains generic subprograms used for converting between
  27. --  sequences of Character and Wide_Character. All access to wide character
  28. --  sequences is isolated in this unit.
  29.  
  30. with System.WCh_Con;
  31.  
  32. package System.WCh_Cnv is
  33.  
  34.    generic
  35.       with function In_Char return Character;
  36.    function Char_Sequence_To_Wide_Char
  37.      (C    : Character;
  38.       EM   : System.WCh_Con.WC_Encoding_Method)
  39.       return Wide_Character;
  40.    --  C is the first character of a sequence of one or more characters which
  41.    --  represent a wide character sequence. Calling the function In_Char for
  42.    --  additional characters as required, Char_To_Wide_Char returns the
  43.    --  corresponding wide character value. Constraint_Error is raised if the
  44.    --  sequence of characters encountered is not a valid wide character
  45.    --  sequence for the given encoding method.
  46.  
  47.    generic
  48.       with procedure Out_Char (C : Character);
  49.    procedure Wide_Char_To_Char_Sequence
  50.      (WC : Wide_Character;
  51.       EM : System.WCh_Con.WC_Encoding_Method);
  52.    --  Given a wide character, converts it into a sequence of one or
  53.    --  more characters, calling the given Out_Char procedure for each.
  54.    --  Constraint_Error is raised if the given wide character value is
  55.    --  not a valid value for the given encoding method.
  56.  
  57. end System.WCh_Cnv;
  58.