Searched defs:TOLOWER_ASC (Results 1 – 1 of 1) sorted by relevance
82 # define TOLOWER_ASC(c) (isupper(c) ? tolower(c) : (c)) macro85 # define TOLOWER_ASC(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) + ('a' - 'A')) macro