Registriert seit: 18. Mär 2004
Ort: Luxembourg
3.492 Beiträge
Delphi 7 Enterprise
|
AW: For-loop from C to Delphi
19. Sep 2011, 13:56
Oder kürzer Or shorter:
Delphi-Quellcode:
function ctoi(source: char): integer;
begin
result := StrToInt('$'+source);
end;
function itoc(source: integer): char;
begin
c := Format('%x', [source])[1];
end;
Ibi fas ubi proxima merces
sudo /Developer/Library/uninstall-devtools --mode=all
|