/usr/share/freemat/help/text/strstr.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 | STRSTR STRSTR String Search Function
Usage
Searches for the first occurance of one string inside another.
The general syntax for its use is
p = strstr(x,y)
where x and y are two strings. The returned integer p
indicates the index into the string x where the substring y
occurs. If no instance of y is found, then p is set to
zero.
|