Next: fstat, Previous: fseek, Up: C library functions [Index]
fsetpos
Function#include <stdio.h> FILE *f; String new path; String new mode; Integer new offset; path = "/home/user/.profile.new"; mode = "r"; f = fopen (path, mode); offset = 0L; fsetpos (f, offset);