hcl/lib/h2-utf8.ads

22 lines
692 B
Ada
Raw Normal View History

2014-01-14 14:22:06 +00:00
generic
type Utf8_Character_Type is (<>);
2014-01-14 14:22:06 +00:00
type Unicode_Character_Type is (<>);
package H2.Utf8 is
pragma Preelaborate (Utf8);
2014-01-14 14:22:06 +00:00
Invalid_Unicode_Character: exception;
subtype Unicode_Character is Unicode_Character_Type;
subtype Utf8_Character is Utf8_Character_Type;
2014-01-14 14:22:06 +00:00
type Utf8_String is array(System_Index range<>) of Utf8_Character;
2014-01-14 14:22:06 +00:00
type Unicode_String is array(System_Index range<>) of Unicode_Character;
function Unicode_To_Utf8 (UC: in Unicode_Character) return Utf8_String;
function Unicode_To_Utf8 (US: in Unicode_String) return Utf8_String;
2014-01-14 14:22:06 +00:00
--procedure Utf8_To_Unicode (Utf8: in Utf8_String;
2014-01-14 14:22:06 +00:00
-- UC: out Unicode_Character_Type);
end H2.Utf8;