windows.cfg: Add config for toupper/tolower

This commit is contained in:
orbitcowboy 2021-01-08 09:20:23 +01:00
parent a8a0dbec26
commit b6f4961e4a
1 changed files with 2 additions and 2 deletions

View File

@ -5866,7 +5866,7 @@ HFONT CreateFont(
<!-- int _tolower(int c); -->
<function name="_tolower">
<use-retval/>
<returnValue type="int"/>
<returnValue type="int">arg1 &lt; 'A' || arg1 &gt; '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 &lt; 'a' || arg1 &gt; 'z' ? arg1 : arg1 - 32</returnValue>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1" direction="in">