Home
last modified time | relevance | path

Searched refs:ASCII_TO_UPPER (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/less/
H A Dless.h126 #define ASCII_TO_UPPER(c) ((c) - 'a' + 'A') macro
150 #define TO_UPPER(c) (is_ascii_char(c) ? ASCII_TO_UPPER(c) : (c))
H A Dopttbl.c821 if ((o->otype & O_TRIPLE) && ASCII_TO_UPPER(o->oletter) == c) in findopt()
949 xbuf_add_char(&xbuf, uppercase && ASCII_IS_LOWER(*np) ? ASCII_TO_UPPER(*np) : *np); in findopts_name()
H A Dcmdbuf.c1400 c = ASCII_TO_UPPER(c); in cmd_setstring()