LOCCHAR                                              Steven Hardy, March 1982

locchar(character, index, string) -> index or false.

This procedure takes as argument a character (ie a small integer), an integer
and a string (or word, which will be treated as a string).
It seaches the string for the character and returns the position of the
character in the string or FALSE if it is not found. The search is started at
the given integer, for example:

    : locchar(`a`, 1, 'the cat sat on the mat') =>
    ** 6
    : locchar(`a`, 7, 'the cat sat on the mat') =>
    ** 10
    : locchar(`a`, 11, 'the cat sat on the mat') =>
    ** 21
    : locchar(`a`, 22, 'the cat sat on the mat') =>
    ** <false>

See also * SKIPCHAR, * LOCCHAR_BACK, * SKIPCHAR_BACK, * STRMEMBER, * ASCII,
    * ISSUBSTRING
