This file is indexed.

/usr/share/freemat/toolbox/util/filesep.m is in freemat-data 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
% FILESEP FILESEP Directory Separation Character
% 
% Usage
% 
% The filesep routine returns the character used to separate directory
% names on the current platform (basically, a forward slash for Windows,
% and a backward slash for all other OSes).  The syntax is simple:
% 
%   x = filesep
% 

% Copyright (c) 2002-2006 Samit Basu
% Licensed under the GPL

function x = filesep
if (strcmp(computer,'PCWIN'))
  x = '\';
else
  x = '/';
end