cfg: Add config for toupper/tolower (#3028)
This commit is contained in:
parent
82f51bd523
commit
a8a0dbec26
|
@ -2848,7 +2848,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<function name="towlower,std::towlower">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<returnValue type="wint_t"/>
|
||||
<returnValue type="wint_t">arg1 < 'A' || arg1 > 'Z' ? arg1 : arg1 + 32</returnValue>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
|
@ -2859,7 +2859,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<function name="towupper,std::towupper">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<returnValue type="wint_t"/>
|
||||
<returnValue type="wint_t">arg1 < 'a' || arg1 > 'z' ? arg1 : arg1 - 32</returnValue>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="in">
|
||||
|
@ -5512,7 +5512,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<!-- int tolower(int c); -->
|
||||
<function name="tolower,std::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">
|
||||
|
@ -5524,7 +5524,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<!-- int toupper(int c); -->
|
||||
<function name="toupper,std::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