Show
Ignore:
Timestamp:
2001-04-26 06:36:33 (8 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Add ascii_strcasecmp() and ascii_strncasecmp() functions which do
locale-independent and case-insensitive string comparisons. Needed
for mutt to work in iso-8859-9 environments, where tolower('I') !=
'i'.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • account.c

    r2103 r2371  
    3030  if (a1->type != a2->type) 
    3131    return 0; 
    32   if (mutt_strcasecmp (a1->host, a2->host)) 
     32  if (ascii_strcasecmp (a1->host, a2->host)) 
    3333    return 0; 
    3434  if (a1->port != a2->port)