stdlib: increase string length for copy and insert

This commit is contained in:
slederer 2025-01-15 01:55:58 +01:00
parent f18176e3fa
commit 3c8525dcca
2 changed files with 4 additions and 4 deletions

View file

@ -150,8 +150,8 @@ procedure strmovedown(var s:string;index,length,delta:integer); external;
procedure RuntimeError(var s:string); external;
(* from stdlib *)
function copy(s:string;index,count:integer):string; external;
procedure insert(ins: string; var dest: string; position:integer); external;
function copy(s:string[256];index,count:integer):string[256]; external;
procedure insert(ins:string[256]; var dest:string[256]; position:integer); external;
procedure delete(var s:string; from:integer; count:integer); external;
function pos(substr:string;var s:string):integer; external;
function pwroften(exp:integer):real; external;