tolower            76 lib/strutil/strutil8bit.c DECLARE_CTYPE_WRAPPER (tolower)
tolower           704 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
tolower           705 lib/strutil/strutil8bit.c         c2 = isupper ((guchar) * s2) ? tolower ((guchar) * s2) : *s2;
tolower           743 lib/strutil/strutil8bit.c         c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
tolower           744 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]);