Home
last modified time | relevance | path

Searched refs:isalower (Results 1 – 4 of 4) sorted by relevance

/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/rltiles/tool/
H A Dtile.h10 static inline bool isalower(int c) in isalower() function
33 return isalower(c) ? c + 'A' - 'a' : c; in toaupper()
39 return isalower(c) ? c + 'A' - 'a' : c; in toaupper()
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dlibutil.h43 static inline bool isalower(int c) in isalower() function
76 return isalower(c) ? c + 'A' - 'a' : c; in toaupper()
82 return isalower(c) ? c + 'A' - 'a' : c; in toaupper()
92 return isalower(c) ? toaupper(c) : toupper(c); in toupper_safe()
H A Dlang-fake.cc303 txt[i] = isalower(txt[i]) ? 's' : 'S'; in _german()
306 txt[i] = isalower(txt[i]) ? 'k' : 'K'; in _german()
H A Dwiz-you.cc616 if (strlen(buf) == 1 && isalower(buf[0])) in wizard_edit_durations()