Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include "kolibc.h"
  2.  
  3. int fill_buff(FILE* f);
  4.  
  5. void rewind(FILE* file)
  6. {
  7.         file->filepos=0;
  8.         fill_buff(file);
  9. }