hcl/lib2/h3-strings.adb

9 lines
169 B
Ada
Raw Normal View History

2021-08-23 23:47:29 +00:00
package body H3.Strings is
procedure Append (Str: in out Elastic_String; V: in Character_Array) is
2021-08-23 23:47:29 +00:00
begin
P.Append (P.Elastic_Array(Str), V);
end;
2021-08-23 23:47:29 +00:00
end H3.Strings;