added qse_sio_truncate(), qse_sio_seek(),

changed qse_sio_getpos() to flush first.
renamed qse_Xio_purge() to qse_Xio_drain().
This commit is contained in:
2014-04-28 14:18:06 +00:00
parent e26b1a2a68
commit 45b2bc5e57
11 changed files with 120 additions and 65 deletions

View File

@ -908,9 +908,9 @@ qse_ssize_t qse_nwio_flush (qse_nwio_t* nwio)
return n;
}
void qse_nwio_purge (qse_nwio_t* nwio)
void qse_nwio_drain (qse_nwio_t* nwio)
{
if (nwio->tio) qse_tio_purge (nwio->tio);
if (nwio->tio) qse_tio_drain (nwio->tio);
}
/* ---------------------------------------------------------- */