Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2.  
  3. int fsetpos(FILE *stream, const fpos_t *pos) {
  4.         stream->position = *pos;
  5.         stream->eof = 0;
  6.         return 0;
  7. }
  8.