Implemented StrCmpNIA like the other StrCmpXX functions.

This commit is contained in:
Uwe Bonnes 1999-09-04 11:04:45 +00:00 committed by Alexandre Julliard
parent 7c7f155be3
commit bd63880ca9
2 changed files with 9 additions and 1 deletions

View File

@ -140,7 +140,7 @@ init COMCTL32_LibMain
350 stdcall StrChrA(str str) COMCTL32_StrChrA
351 stdcall StrRChrA(str str long) COMCTL32_StrRChrA
352 stdcall StrCmpNA(str str long) COMCTL32_StrCmpNA
353 stub StrCmpNIA
353 stdcall StrCmpNIA(str str long) COMCTL32_StrCmpNIA
354 stdcall StrStrA(str str) COMCTL32_StrStrA
355 stdcall StrStrIA(str str) COMCTL32_StrStrIA
356 stdcall StrCSpnA(str str) COMCTL32_StrCSpnA

View File

@ -1996,6 +1996,14 @@ INT WINAPI COMCTL32_StrCmpNA( LPCSTR lpStr1, LPCSTR lpStr2, int nChar) {
return strncmp(lpStr1, lpStr2, nChar);
}
/**************************************************************************
* StrCmpNA [COMCTL32.352]
*
*/
INT WINAPI COMCTL32_StrCmpNIA( LPCSTR lpStr1, LPCSTR lpStr2, int nChar) {
return strncasecmp(lpStr1, lpStr2, nChar);
}
/**************************************************************************
* StrCmpNW [COMCTL32.360]
*