Ignore:
Timestamp:
Mar 3, 2007, 5:53:34 PM (18 years ago)
Author:
イグトランス (egtra)
Message:

#68修正完了

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/function.sbp

    r125 r126  
    10681068End Function
    10691069
     1070Function _System_IsDoubleUnitChar(lead As Char, trail As Char) As Boolean
     1071#ifdef UNICODE
     1072    Return _System_IsSurrogatePair(lead, trail)
     1073#else
     1074    Return IsDBCSLeadByte(lead) <> FALSE
     1075#endif
     1076End Function
     1077
    10701078Sub _System_FillChar(p As *Char, n As SIZE_T, c As Char)
    10711079    Dim i As SIZE_T
     
    10831091End Function
    10841092
    1085 Function _System_ASCII_ToLower(c As Char)
     1093Function _System_ASCII_ToLower(c As Char) As Char
    10861094    If _System_ASCII_IsUpper(c) Then
    10871095        Return c Or &h20
     
    10911099End Function
    10921100
    1093 Function _System_ASCII_ToUpper(c As Char)
     1101Function _System_ASCII_ToUpper(c As Char) As Char
    10941102    If _System_ASCII_IsLower(c) Then
    10951103        Return c And (Not &h20)
Note: See TracChangeset for help on using the changeset viewer.