コード例 #1
0
ファイル: rtsysutl.c プロジェクト: Azarien/open-watcom-v2
void    Rewindf( ftnfile *fcb ) {
//===============================

// System dependent rewind.

    if( fcb->fileptr != NULL ) {
        ChkDisk( fcb );
        FRewind( fcb->fileptr );
        ((a_file *)fcb->fileptr)->attrs |= TRUNC_ON_WRITE;
    }
}
コード例 #2
0
ファイル: sdcio.c プロジェクト: ABratovic/open-watcom-v2
void    SDRewind( file_handle fp ) {
//==================================

    FRewind( fp );
}