Ignore:
Timestamp:
Mar 4, 2007, 11:28:44 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

String型の自身を変更するメソッドを、戻り値で返すように変更。
併せて文字列比較を自前の関数で行うように変更。
プロンプトのキャレットの位置計算が正しくなかったバグを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/function.sbp

    r126 r132  
    11371137End Function
    11381138
     1139Function _System_StrCmp(s1 As PCSTR, s2 As PCSTR) As Long
     1140    Dim i = 0 As SIZE_T
     1141    While s1[i] = s2[i]
     1142        If s1[i] = 0 Then
     1143            Exit While
     1144        End If
     1145        i++
     1146    Wend
     1147    _System_StrCmp = s1[i] - s2[i]
     1148End Function
     1149
     1150Function _System_StrCmp(s1 As PCWSTR, s2 As PCWSTR) As Long
     1151    Dim i = 0 As SIZE_T
     1152    While s1[i] = s2[i]
     1153        If s1[i] = 0 Then
     1154            Exit While
     1155        End If
     1156        i++
     1157    Wend
     1158    _System_StrCmp = s1[i] - s2[i]
     1159End Function
    11391160#endif '_INC_FUNCTION
Note: See TracChangeset for help on using the changeset viewer.