HelenOS sources
str_chr 133 common/include/str.h extern char *str_chr(const char *str, char32_t ch);
str_chr 1474 common/str.c while ((ch = str_decode(s, &tmp, len)) && str_chr(delim, ch))
str_chr 1480 common/str.c while ((ch = str_decode(s, &tmp, len)) && !str_chr(delim, ch))
str_chr 51 kernel/genarch/src/multiboot/multiboot.c const char *end = str_chr(cmd_line, ' ');
str_chr 84 kernel/genarch/src/multiboot/multiboot.c const char *start = str_chr(cmd_line, ' ');
str_chr 133 kernel/generic/common/include/str.h extern char *str_chr(const char *str, char32_t ch);
str_chr 1474 kernel/generic/common/str.c while ((ch = str_decode(s, &tmp, len)) && str_chr(delim, ch))
str_chr 1480 kernel/generic/common/str.c while ((ch = str_decode(s, &tmp, len)) && !str_chr(delim, ch))
str_chr 160 uspace/app/bdsh/cmds/modules/alias/alias.c if ((value = str_chr(name, '=')) != NULL) {
str_chr 152 uspace/app/taskbar/taskbar.c qmark = str_chr(dspec, '?');
str_chr 322 uspace/app/websrv/websrv.c char *end_uri = str_chr(uri, ' ');
str_chr 90 uspace/lib/bithenge/src/source.c if (str_chr(source, ':')) {
str_chr 290 uspace/lib/bithenge/src/transform.c const char *end = str_chr(format, '%');
str_chr 133 uspace/lib/c/common/include/str.h extern char *str_chr(const char *str, char32_t ch);
str_chr 1474 uspace/lib/c/common/str.c while ((ch = str_decode(s, &tmp, len)) && str_chr(delim, ch))
str_chr 1480 uspace/lib/c/common/str.c while ((ch = str_decode(s, &tmp, len)) && !str_chr(delim, ch))
str_chr 235 uspace/lib/c/generic/getopt.c (oli = str_chr(options + (IGNORE_FIRST ? 1 : 0), optchar)) == NULL) {
str_chr 363 uspace/lib/c/generic/getopt.c if ((has_equal = str_chr(current_argv, '=')) != NULL) {
str_chr 67 uspace/lib/pcut/src/os/helenos.c return str_chr(haystack, needle);
str_chr 133 uspace/lib/posix/include/common/str.h extern char *str_chr(const char *str, char32_t ch);
str_chr 107 uspace/lib/ui/src/ui.c qm = str_chr(cp, '?');
str_chr 527 uspace/srv/fs/cdfs/cdfs_ops.c dot = str_chr(name, '.');
str_chr 530 uspace/srv/fs/cdfs/cdfs_ops.c scolon = str_chr(dot, ';');
str_chr 67 uspace/srv/fs/fat/fat_dentry.c if (!str_chr(name, '.')) {
str_chr 388 uspace/srv/fs/fat/fat_dentry.c if (str_chr(FAT_STOP_CHARS, ch) != NULL) {
HelenOS homepage, sources at GitHub