Ejemplo n.º 1
0
static int gio_ungetc (int c, VFSFile * file)
{
    return (! gio_fseek (file, -1, SEEK_CUR)) ? c : -1;
}
Ejemplo n.º 2
0
static void gio_rewind (VFSFile * file)
{
    gio_fseek (file, 0, SEEK_SET);
}