Changeset 193 for Include/Classes/System/String.ab
- Timestamp:
- Mar 28, 2007, 10:55:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/String.ab
r192 r193 21 21 22 22 Sub String() 23 Chars = 0 23 Chars = _System_malloc(SizeOf (StrChar)) '0 24 Chars[0] = 0 24 25 m_Length = 0 25 26 End Sub … … 304 305 End Function 305 306 Private 306 Static ConstFunction ConcatStrChar(text1 As *StrChar, text1Length As Long, text2 As *StrChar, text2Length As Long) As String307 Static Function ConcatStrChar(text1 As *StrChar, text1Length As Long, text2 As *StrChar, text2Length As Long) As String 307 308 With ConcatStrChar 308 309 .AllocStringBuffer(text1Length + text2Length)
Note:
See TracChangeset
for help on using the changeset viewer.