Skip to content

Commit b251092

Browse files

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

cfg/windows.cfg

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2297,6 +2297,7 @@
22972297
<!-- int wcsicmp(const wchar_t *s1, const wchar_t *s2); -->
22982298
<!-- int _wcsicmp(const wchar_t *s1, const wchar_t *s2); -->
22992299
<!-- int _mbsicmp(const unsigned char *string1, const unsigned char *string2); -->
2300+
<!-- https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/stricmp-wcsicmp-mbsicmp-stricmp-l-wcsicmp-l-mbsicmp-l?view=msvc-170 -->
23002301
<function name="stricmp,_stricmp,wcsicmp,_wcsicmp,_mbsicmp,_tcsicmp">
23012302
<noreturn>false</noreturn>
23022303
<returnValue type="int"/>
@@ -2313,6 +2314,25 @@
23132314
<strz/>
23142315
</arg>
23152316
</function>
2317+
<!-- int strcmpi(const char *s1, const char *s2); -->
2318+
<!-- https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/strcmpi?view=msvc-170 -->
2319+
<function name="strcmpi">
2320+
<noreturn>false</noreturn>
2321+
<returnValue type="int"/>
2322+
<leak-ignore/>
2323+
<use-retval/>
2324+
<warn severity="style" alternatives="_stricmp" reason="Obsolete">It is recommend you use _stricmp instead.</warn>
2325+
<arg nr="1" direction="in">
2326+
<not-uninit/>
2327+
<not-null/>
2328+
<strz/>
2329+
</arg>
2330+
<arg nr="2" direction="in">
2331+
<not-uninit/>
2332+
<not-null/>
2333+
<strz/>
2334+
</arg>
2335+
</function>
23162336
<!-- DWORD WINAPI GetFileAttributes(_In_ LPCTSTR lpFileName);-->
23172337
<function name="GetFileAttributes,GetFileAttributesA,GetFileAttributesW">
23182338
<noreturn>false</noreturn>

0 commit comments

Comments
 (0)