This file is indexed.

/usr/share/freemat/help/text/fseek.mdc is in freemat-help 4.0-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FSEEK FSEEK Seek File To A Given Position

Usage

Moves the file pointer associated with the given file handle to 
the specified offset (in bytes).  The usage is

  fseek(handle,offset,style)

The handle argument must be a value and active file handle.  The
offset parameter indicates the desired seek offset (how much the
file pointer is moved in bytes).  The style parameter determines
how the offset is treated.  Three values for the style parameter
are understood:
  -  string 'bof' or the value -1, which indicate the seek is relative
to the beginning of the file.  This is equivalent to SEEK_SET in
ANSI C.

  -  string 'cof' or the value 0, which indicates the seek is relative
to the current position of the file.  This is equivalent to 
SEEK_CUR in ANSI C.

  -  string 'eof' or the value 1, which indicates the seek is relative
to the end of the file.  This is equivalent to SEEK_END in ANSI
C.

The offset can be positive or negative.