strchr(str, c) { local i; i = 0; loop { if ([str + i] == c) return (str + i); if ([str + i] == 0) return (0); i = i + 1; } }