Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / test / tcpstr13.pp
Size: Mime:
program tcpstr13;

// check that copy operation converts from 866 to DefaultSystemCodePage encoding

{$mode delphi}

{$ifdef unix}
uses
  cwstring;
{$endif}

type
  ts866 = type ansistring(866);

var
  s: ts866;
  a: ansistring;
begin
  s:='abc'#$00A9#$00AE'123';
//  if s[4] <> 'c' then
//    halt(1);
  a:=copy(s,1,4);
  if stringcodepage(a)<>DefaultSystemCodePage then
    halt(2);
end.