gnu.cfg: strcasestr wrong return type (#4776)
This commit is contained in:
parent
119a681265
commit
608be24726
|
@ -980,10 +980,10 @@
|
||||||
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
||||||
</function>
|
</function>
|
||||||
<!-- https://www.gnu.org/software/gnulib/manual/html_node/c_002dstrcasestr.html -->
|
<!-- https://www.gnu.org/software/gnulib/manual/html_node/c_002dstrcasestr.html -->
|
||||||
<!-- size_t strcasestr(const char *s1, const char *s2); -->
|
<!-- char* strcasestr(const char *s1, const char *s2); -->
|
||||||
<function name="strcasestr">
|
<function name="strcasestr">
|
||||||
<use-retval/>
|
<use-retval/>
|
||||||
<returnValue type="size_t"/>
|
<returnValue type="char *"/>
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
<leak-ignore/>
|
<leak-ignore/>
|
||||||
<pure/>
|
<pure/>
|
||||||
|
|
Loading…
Reference in New Issue