Home
last modified time | relevance | path

Searched refs:ngx_toupper (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/nginx-1.16.1/src/mail/
H A Dngx_mail_parse.c43 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()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_string.h48 #define ngx_toupper(c) (u_char) ((c >= 'a' && c <= 'z') ? (c & ~0x20) : c) macro