low_str_strchr

Find a character in a string. 
l_text 	low_str_strchr ( 
		cl_text		s1, 
		l_int 			ch
);

Return Value
Returns a pointer to the first occurrence of @ch in string @s1, or NULL if @ch is not found.
Parameters
s1
Null-terminated source string
ch
Character to be located
Remarks
The low_str_strchr function finds the first occurrence of @ch in string @s1, or it returns NULL if @ch is not found. 
The null-terminating character is included in the search.