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
a35db4e7
Commit
a35db4e7
authored
Apr 19, 2013
by
Jactry Zeng
Committed by
Alexandre Julliard
Apr 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added missing declarations to msvcrt.
parent
c050cdb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
string.h
include/msvcrt/string.h
+11
-0
No files found.
include/msvcrt/string.h
View file @
a35db4e7
...
...
@@ -42,14 +42,20 @@ static inline void* memccpy(void *s1, const void *s2, int c, size_t n) { return
#endif
/* _CRT_MEMORY_DEFINED */
int
__cdecl
_strcmpi
(
const
char
*
,
const
char
*
);
int
__cdecl
_strcoll_l
(
const
char
*
,
const
char
*
,
_locale_t
);
char
*
__cdecl
_strdup
(
const
char
*
);
char
*
__cdecl
_strerror
(
const
char
*
);
errno_t
__cdecl
strerror_s
(
char
*
,
size_t
,
int
);
int
__cdecl
_stricmp
(
const
char
*
,
const
char
*
);
int
__cdecl
_stricoll
(
const
char
*
,
const
char
*
);
int
__cdecl
_stricoll_l
(
const
char
*
,
const
char
*
,
_locale_t
);
char
*
__cdecl
_strlwr
(
char
*
);
errno_t
__cdecl
_strlwr_s
(
char
*
,
size_t
);
int
__cdecl
_strncoll
(
const
char
*
,
const
char
*
,
size_t
);
int
__cdecl
_strncoll_l
(
const
char
*
,
const
char
*
,
size_t
,
_locale_t
);
int
__cdecl
_strnicmp
(
const
char
*
,
const
char
*
,
size_t
);
int
__cdecl
_strnicoll
(
const
char
*
,
const
char
*
,
size_t
);
int
__cdecl
_strnicoll_l
(
const
char
*
,
const
char
*
,
size_t
,
_locale_t
);
char
*
__cdecl
_strnset
(
char
*
,
int
,
size_t
);
char
*
__cdecl
_strrev
(
char
*
);
char
*
__cdecl
_strset
(
char
*
,
int
);
...
...
@@ -86,9 +92,14 @@ size_t __cdecl strxfrm(char*,const char*,size_t);
wchar_t
*
__cdecl
_wcsdup
(
const
wchar_t
*
);
int
__cdecl
_wcsicmp
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
_wcsicoll
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
_wcsicoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
_locale_t
);
wchar_t
*
__cdecl
_wcslwr
(
wchar_t
*
);
int
__cdecl
_wcscoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
_locale_t
);
int
__cdecl
_wcsncoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsncoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
,
_locale_t
);
int
__cdecl
_wcsnicmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
,
_locale_t
);
wchar_t
*
__cdecl
_wcsnset
(
wchar_t
*
,
wchar_t
,
size_t
);
wchar_t
*
__cdecl
_wcsrev
(
wchar_t
*
);
wchar_t
*
__cdecl
_wcsset
(
wchar_t
*
,
wchar_t
);
...
...
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