Home
last modified time | relevance | path

Searched defs:TOLOWER_ASC (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dmacros.h82 # define TOLOWER_ASC(c) (isupper(c) ? tolower(c) : (c)) macro
85 # define TOLOWER_ASC(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) + ('a' - 'A')) macro