Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f9cad774
Commit
f9cad774
authored
May 23, 2005
by
Uwe Bonnes
Committed by
Alexandre Julliard
May 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement minimal _stricoll.
parent
8d6a673c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
string.c
dlls/msvcrt/string.c
+9
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
f9cad774
...
...
@@ -453,7 +453,7 @@
@ cdecl _strdup(str)
@ cdecl _strerror(long)
@ cdecl _stricmp(str str) strcasecmp
@
stub _stricoll #(str str)
@
cdecl _stricoll(str str) MSVCRT__stricoll
@ cdecl _strlwr(str) ntdll._strlwr
@ stub _strncoll #(str str long)
@ cdecl _strnicmp(str str long) strncasecmp
...
...
dlls/msvcrt/string.c
View file @
f9cad774
...
...
@@ -112,3 +112,12 @@ void MSVCRT__swab(char* src, char* dst, int len)
}
}
}
/*********************************************************************
* _stricoll (MSVCRT.@)
*/
INT
MSVCRT__stricoll
(
const
char
*
str1
,
const
char
*
str2
)
{
/* FIXME: handle collates */
TRACE
(
"str1 %s str2 %s
\n
"
,
debugstr_a
(
str1
),
debugstr_a
(
str2
));
return
lstrcmpiA
(
str1
,
str2
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment