This file is indexed.

/usr/lib/help/string-prefixeqp is in scheme9 2013.11.26-1.

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
S9 LIB  (string-prefix=? string1 string2)     ==>  boolean
        (string-prefix-ci=? string1 string2)  ==>  boolean

Return #T when STRING2 has a prefix of STRING1 and otherwise
return #F. STRING-PREFIX-CI=? performs the same operation, but
ignores the case of the strings.

(string-prefix=? "foo" "foobar")  ==>  #t
(string-prefix=? "foo" "fubar")   ==>  #f