tolower            76 lib/strutil/strutil8bit.c DECLARE_CTYPE_WRAPPER (tolower)
tolower           691 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
tolower           692 lib/strutil/strutil8bit.c         c2 = isupper ((guchar) * s2) ? tolower ((guchar) * s2) : *s2;
tolower           727 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
tolower           728 lib/strutil/strutil8bit.c         c2 = isupper ((guchar) * s2) ? tolower ((guchar) * s2) : *s2;
tolower           202 src/editor/syntax.c     return edit->is_case_insensitive ? tolower (c) : c;
tolower           927 src/editor/syntax.c             line[i] = tolower (line[i]);