Files
Thomas Quinot e429306671 Move in supporting files for new version of IAC from import directory.
For FC19-007

Subversion-branch: /trunk/polyorb
Subversion-revision: 41322
2006-12-19 11:24:07 +00:00

17 lines
637 B
Ada

with Types; use Types;
package Utils is
procedure Capitalize (S : in out String);
-- Change in S any leading character or any successor of an
-- underscore into its corresponding uppercase character.
function Quoted (S : String; D : Character := '"') return String; -- "
function Quoted (S : String; D : Character := '"') return Name_Id; -- "
function Quoted (N : Name_Id; D : Character := '"') return String; -- "
function Quoted (N : Name_Id; D : Character := '"') return Name_Id; -- "
-- Embrace string S or name N with character D
function To_Lower (N : Name_Id) return Name_Id;
end Utils;