Changeset 398 for trunk/Library/ACLString.pas
- Timestamp:
- May 22, 2016, 12:55:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Library/ACLString.pas
r17 r398 179 179 uses 180 180 {$Ifdef os2} 181 OS2Def, ACLFileIOUtility, 181 OS2Def, 182 ACLFileIOUtility, 182 183 {$endif} 183 ACLUtility, ACLStringUtility; 184 ACLUtility, 185 CharUtilsUnit; 184 186 185 187 const … … 401 403 // EndP now points to one byte past last non-space char 402 404 403 _Length:= PChar Diff( EndP, StartP );405 _Length:= PCharPointerDiff( EndP, StartP ); 404 406 405 407 if _Length > 0 then … … 486 488 if C = CharToFind then 487 489 begin 488 Result:= PChar Diff( p, _S );490 Result:= PCharPointerDiff( p, _S ); 489 491 break; 490 492 end;
Note:
See TracChangeset
for help on using the changeset viewer.