- Timestamp:
- May 22, 2016, 3:06:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Library/AStringUtilityUnit.pas
r309 r407 8 8 Classes, 9 9 ACLString; 10 11 // Puts specified program command line parameter 12 // into AString 13 procedure AString_ParamStr( item: byte; 14 S: TAString ); 10 15 11 16 // Splits up an AString at the given separator CHAR … … 52 57 uses 53 58 ACLUtility; 59 60 procedure AString_ParamStr( item: byte; 61 S: TAString ); 62 var 63 p: pchar; 64 l: longint; 65 begin 66 GetCommandLineParameter( item, p, l ); 67 S.AssignPCharLen( p, l ); 68 end; 54 69 55 70 procedure AStringToList( S: TAstring;
Note:
See TracChangeset
for help on using the changeset viewer.