Changeset 237 for Include/basic/function.sbp
- Timestamp:
- May 7, 2007, 4:22:52 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/function.sbp
r223 r237 508 508 i2=0 509 509 Do 510 Oct$[i2] = &h30 +((num \ CDWord(8 ^ i)) And &H07) ' &h30 = Asc("0")510 Oct$[i2] = &h30 +((num \ CDWord(8 ^ i)) And &H07) As StrChar ' &h30 = Asc("0") 511 511 If i=0 Then Exit Do 512 512 i-- … … 715 715 Dim i As Long 716 716 For i=0 To num-1 717 memcpy(VarPtr(String$ [i*length]), StrPtr(buf), SizeOf (StrChar) * length)717 memcpy(VarPtr(String$.Chars[i*length]), StrPtr(buf), SizeOf (StrChar) * length) 718 718 Next 719 719 End Function … … 1194 1194 Dim i = 0 As SIZE_T 1195 1195 For i = 0 To ELM(size) 1196 _System_StrCmp = s1[i] - s2[i]1197 If _System_StrCmp <> 0 Then1196 _System_StrCmpN = s1[i] - s2[i] 1197 If _System_StrCmpN <> 0 Then 1198 1198 Exit Function 1199 1199 End If … … 1204 1204 Dim i = 0 As SIZE_T 1205 1205 For i = 0 To ELM(size) 1206 _System_StrCmp = s1[i] - s2[i]1207 If _System_StrCmp <> 0 Then1206 _System_StrCmpN = s1[i] - s2[i] 1207 If _System_StrCmpN <> 0 Then 1208 1208 Exit Function 1209 1209 End If
Note:
See TracChangeset
for help on using the changeset viewer.