Searched refs:ngx_toupper (Results 1 – 2 of 2) sorted by relevance
43 c0 = ngx_toupper(c[0]); in ngx_mail_pop3_parse_command()44 c1 = ngx_toupper(c[1]); in ngx_mail_pop3_parse_command()45 c2 = ngx_toupper(c[2]); in ngx_mail_pop3_parse_command()46 c3 = ngx_toupper(c[3]); in ngx_mail_pop3_parse_command()656 c0 = ngx_toupper(c[0]); in ngx_mail_smtp_parse_command()657 c1 = ngx_toupper(c[1]); in ngx_mail_smtp_parse_command()658 c2 = ngx_toupper(c[2]); in ngx_mail_smtp_parse_command()659 c3 = ngx_toupper(c[3]); in ngx_mail_smtp_parse_command()
48 #define ngx_toupper(c) (u_char) ((c >= 'a' && c <= 'z') ? (c & ~0x20) : c) macro