FreeBASIC  0.91.0
io_setpos.c
Go to the documentation of this file.
1 /* Sets a file handles line length */
2 
3 #include "fb.h"
4 
5 FBCALL int fb_SetPos( FB_FILE *handle, int line_length )
6 {
7  FB_LOCK();
8  handle->line_length = line_length;
9  FB_UNLOCK();
10 
11  return fb_ErrorSetNum( FB_RTERROR_OK );
12 }