Files
PolyORB/compilers/iac/utils.ads
Laurent Pautet a4391c528a Sources of Idl to Ada Compiler
[Imported from Perforce change 6618 at 2006-12-01 19:56:22]

Subversion-branch: /trunk/polyorb
Subversion-revision: 34572
2003-04-08 23:10:26 +00:00

17 lines
512 B
Ada

with Types; use Types;
package Utils is
procedure Capitalize (S : in out String);
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;