Ignore:
Timestamp:
Mar 13, 2007, 4:49:16 AM (17 years ago)
Author:
dai
Message:

_System_ASCII_IsLowerと_System_ASCII_IsUpportのパラメータをSByteとWCHARに変更。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/function.sbp

    r145 r164  
    11011101End Function
    11021102
    1103 Function _System_ASCII_IsLower(c As Char) As Boolean
     1103Function _System_ASCII_IsLower(c As SByte) As Boolean
    11041104    Return _System_ASCII_IsLower(c As Byte As WCHAR)
    11051105End Function
     
    11171117End Function
    11181118
    1119 Function _System_ASCII_ToUpper(c As Char) As Char
     1119Function _System_ASCII_ToUpper(c As WCHAR) As WCHAR
    11201120    If _System_ASCII_IsLower(c) Then
    11211121        Return c And (Not &h20)
Note: See TracChangeset for help on using the changeset viewer.