/usr/lib/s9fes/help/string-scan is in scheme9 2010.11.13-2.
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 | S9 LIB (string-scan char string) ==> integer | #f
(string-ci-scan char string) ==> integer | #f
Scan STRING for CHAR. When STRING contains CHAR, return its position,
otherwise return #F. STRING-CI-SCAN does the same but ignores case.
(string-scan #\y "xyz") ==> 1
|