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); -->
|
<!-- int _tolower(int c); -->
|
||||||
<function name="_tolower">
|
<function name="_tolower">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<returnValue type="int"/>
|
<returnValue type="int">arg1 < 'A' || arg1 > 'Z' ? arg1 : arg1 + 32</returnValue>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<leak-ignore/>
|
<leak-ignore/>
|
||||||
<arg nr="1" direction="in">
|
<arg nr="1" direction="in">
|
||||||
|
@ -5904,7 +5904,7 @@ HFONT CreateFont(
|
||||||
<!-- int _toupper(int c); -->
|
<!-- int _toupper(int c); -->
|
||||||
<function name="_toupper">
|
<function name="_toupper">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<returnValue type="int"/>
|
<returnValue type="int">arg1 < 'a' || arg1 > 'z' ? arg1 : arg1 - 32</returnValue>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<leak-ignore/>
|
<leak-ignore/>
|
||||||
<arg nr="1" direction="in">
|
<arg nr="1" direction="in">
|
||||||
|
|
Loading…
Reference in New Issue