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
  • addrbook.c

    r1601 r2371  
    103103    r = -1; 
    104104  else 
    105     r = mutt_strcasecmp (pa->mailbox, pb->mailbox); 
     105    r = ascii_strcasecmp (pa->mailbox, pb->mailbox); 
    106106  return (RSORT (r)); 
    107107}