fpc/tests/test/tset4.pp
Jonas Maebe 720ad93659 * fixed mode switch (objpas -> objfpc)
git-svn-id: trunk@7377 -
2007-05-17 13:36:00 +00:00

20 lines
280 B
ObjectPascal

{$mode objfpc}
{$packset 1}
uses
sysutils;
function possetex (const c:string;const s : ansistring;count:Integer ):Integer;
var cset : TSysCharSet;
i : integer;
begin
cset:=[];
if length(c)>0 then
for i:=1 to length(c) do
include(cset,c[i]);
end;
begin
end.