posix.cfg: Added support for wcpncpy.
This commit is contained in:
parent
b14146b853
commit
cdeb7fb25f
|
@ -3231,6 +3231,26 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
||||||
<not-null/>
|
<not-null/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- http://man7.org/linux/man-pages/man3/wcpncpy.3.html -->
|
||||||
|
<!-- wchar_t *wcpncpy(wchar_t *dest, const wchar_t *src, size_t n); -->
|
||||||
|
<function name="wcpncpy">
|
||||||
|
<returnValue type="wchar_t *"/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<arg nr="1">
|
||||||
|
<not-null/>
|
||||||
|
<minsize type="argvalue" arg="3"/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2">
|
||||||
|
<not-null/>
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3">
|
||||||
|
<not-uninit/>
|
||||||
|
<not-bool/>
|
||||||
|
<valid>0:</valid>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- http://man7.org/linux/man-pages/man3/memccpy.3.html -->
|
<!-- http://man7.org/linux/man-pages/man3/memccpy.3.html -->
|
||||||
<!-- void *memccpy(void *dest, const void *src, int c, size_t n);-->
|
<!-- void *memccpy(void *dest, const void *src, int c, size_t n);-->
|
||||||
<function name="memccpy">
|
<function name="memccpy">
|
||||||
|
|
Loading…
Reference in New Issue