std.cfg: Added support for C11 function memset_s().

This commit is contained in:
orbitcowboy 2016-12-12 13:31:10 +01:00
parent d6aef86d70
commit c985723869
1 changed files with 20 additions and 0 deletions

View File

@ -2464,6 +2464,26 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<valid>0:</valid>
</arg>
</function>
<!-- errno_t memset_s( void *dest, rsize_t destsz, int ch, rsize_t count ) -->
<function name="memset_s">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-null/>
<minsize type="argvalue" arg="2"/>
</arg>
<arg nr="2">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="3">
<not-uninit/>
</arg>
<arg nr="4">
<not-uninit/>
<valid>0:</valid>
</arg>
</function>
<!-- void *memset(void *s, int c, size_t n); -->
<function name="memset,std::memset">
<noreturn>false</noreturn>