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 / webtbs / tw21443a.pp
Size: Mime:
uses
  sysutils;

var
  p1, p2, p3, p4: pwidechar;
begin

 { StrECopy(Dest,Source) is equivalent to the following:
    strcopy(Dest,Source);
    StrECopy := StrEnd(Dest);
  }
  p1:='abcdefg';
  getmem(p2,100);
  p3:=strecopy(p2,p1);
  fillchar(p2^,100,0);
  strcopy(p2,p1);
  p4:=strend(p2);
  if p3<>p4 then
    halt(1);
end.