windows.cfg: Add config for toupper/tolower
This commit is contained in:
parent
a8a0dbec26
commit
b6f4961e4a
|
@ -5866,7 +5866,7 @@ HFONT CreateFont(
|
|||
<!-- int _tolower(int c); -->
|
||||
<function name="_tolower">
|
||||
<use-retval/>
|
||||
<returnValue type="int"/>
|
||||
<returnValue type="int">arg1 < 'A' || arg1 > 'Z' ? arg1 : arg1 + 32</returnValue>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
|
@ -5904,7 +5904,7 @@ HFONT CreateFont(
|
|||
<!-- int _toupper(int c); -->
|
||||
<function name="_toupper">
|
||||
<use-retval/>
|
||||
<returnValue type="int"/>
|
||||
<returnValue type="int">arg1 < 'a' || arg1 > 'z' ? arg1 : arg1 - 32</returnValue>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
|
|
Loading…
Reference in New Issue