1
0
forked from aniani/vim

updated for version 7.0080

This commit is contained in:
Bram Moolenaar
2005-06-05 22:01:26 +00:00
parent 50cde8273e
commit bc045ea87a
11 changed files with 290 additions and 161 deletions

View File

@@ -2186,12 +2186,13 @@ utf_isupper(a)
* two characters otherwise.
*/
int
mb_strnicmp(s1, s2, n)
mb_strnicmp(s1, s2, nn)
char_u *s1, *s2;
int n;
size_t nn;
{
int i, j, l;
int cdiff;
int n = nn;
for (i = 0; i < n; i += l)
{