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.2.0 / tests / test / tcpstr11.pp
Size: Mime:
program tcpstr11;
type
  cp866 = type AnsiString(866);
var
  A: cp866;
  c: array[0..5] of ansichar = '¯à¨¢¥â';
begin
  A := c;
  if StringCodePage(A) <> 866 then
    halt(1);
end.