std.cfg: Added support for std::ofstream::write().

This commit is contained in:
orbitcowboy 2019-06-07 21:02:16 +02:00
parent 89d4cefa96
commit 92d8b9d68f
1 changed files with 14 additions and 0 deletions

View File

@ -6233,6 +6233,20 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<returnValue type="bool"/>
<noreturn>false</noreturn>
</function>
<!--std::ofstream& std::ofstream::write (const char* s, streamsize n);-->
<function name="std::ofstream::write">
<returnValue type="std::ofstream &amp;"/>
<leak-ignore/>
<noreturn>false</noreturn>
<arg nr="1" direction="in">
<not-uninit/>
<not-null/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<valid>1:</valid>
</arg>
</function>
<!--std::ostream& std::ostream::write (const char* s, streamsize n);-->
<function name="std::ostream::write">
<returnValue type="std::ostream &amp;"/>