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
5361263b
Commit
5361263b
authored
Jun 16, 2010
by
Alexander Scott-Johns
Committed by
Alexandre Julliard
Jun 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/msvcrt: Update a bit.
parent
5fd1409c
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
55 additions
and
2 deletions
+55
-2
crtdefs.h
include/msvcrt/crtdefs.h
+5
-0
memory.h
include/msvcrt/memory.h
+1
-0
stddef.h
include/msvcrt/stddef.h
+0
-2
stdio.h
include/msvcrt/stdio.h
+16
-0
stdlib.h
include/msvcrt/stdlib.h
+7
-0
string.h
include/msvcrt/string.h
+10
-0
wchar.h
include/msvcrt/wchar.h
+16
-0
No files found.
include/msvcrt/crtdefs.h
View file @
5361263b
...
...
@@ -172,3 +172,8 @@ typedef unsigned short wint_t;
typedef
unsigned
short
wctype_t
;
#define _WCTYPE_T_DEFINED
#endif
#ifndef _ERRNO_T_DEFINED
typedef
int
errno_t
;
#define _ERRNO_T_DEFINED
#endif
include/msvcrt/memory.h
View file @
5361263b
...
...
@@ -20,6 +20,7 @@ extern "C" {
void
*
__cdecl
memchr
(
const
void
*
,
int
,
size_t
);
int
__cdecl
memcmp
(
const
void
*
,
const
void
*
,
size_t
);
void
*
__cdecl
memcpy
(
void
*
,
const
void
*
,
size_t
);
errno_t
__cdecl
memcpy_s
(
void
*
,
size_t
,
const
void
*
,
size_t
);
void
*
__cdecl
memset
(
void
*
,
int
,
size_t
);
void
*
__cdecl
_memccpy
(
void
*
,
const
void
*
,
int
,
unsigned
int
);
int
__cdecl
_memicmp
(
const
void
*
,
const
void
*
,
unsigned
int
);
...
...
include/msvcrt/stddef.h
View file @
5361263b
/*
* Time definitions
*
* Copyright 2000 Francois Gouget.
*
* This library is free software; you can redistribute it and/or
...
...
include/msvcrt/stdio.h
View file @
5361263b
...
...
@@ -113,10 +113,12 @@ int __cdecl _putw(int,FILE*);
int
__cdecl
_rmtmp
(
void
);
int
__cdecl
_setmaxstdio
(
int
);
int
__cdecl
_snprintf
(
char
*
,
size_t
,
const
char
*
,...);
int
__cdecl
_snprintf_s
(
char
*
,
size_t
,
size_t
,
const
char
*
,...);
char
*
__cdecl
_tempnam
(
const
char
*
,
const
char
*
);
int
__cdecl
_unlink
(
const
char
*
);
int
__cdecl
_vscprintf
(
const
char
*
,
__ms_va_list
);
int
__cdecl
_vsnprintf
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
int
__cdecl
_vsnprintf_s
(
char
*
,
size_t
,
size_t
,
const
char
*
,
__ms_va_list
);
void
__cdecl
clearerr
(
FILE
*
);
int
__cdecl
fclose
(
FILE
*
);
...
...
@@ -127,12 +129,14 @@ int __cdecl fgetc(FILE*);
int
__cdecl
fgetpos
(
FILE
*
,
fpos_t
*
);
char
*
__cdecl
fgets
(
char
*
,
int
,
FILE
*
);
FILE
*
__cdecl
fopen
(
const
char
*
,
const
char
*
);
errno_t
__cdecl
fopen_s
(
FILE
**
,
const
char
*
,
const
char
*
);
int
__cdecl
fprintf
(
FILE
*
,
const
char
*
,...);
int
__cdecl
fputc
(
int
,
FILE
*
);
int
__cdecl
fputs
(
const
char
*
,
FILE
*
);
size_t
__cdecl
fread
(
void
*
,
size_t
,
size_t
,
FILE
*
);
FILE
*
__cdecl
freopen
(
const
char
*
,
const
char
*
,
FILE
*
);
int
__cdecl
fscanf
(
FILE
*
,
const
char
*
,...);
int
__cdecl
fscanf_s
(
FILE
*
,
const
char
*
,...);
int
__cdecl
fseek
(
FILE
*
,
__msvcrt_long
,
int
);
int
__cdecl
fsetpos
(
FILE
*
,
fpos_t
*
);
__msvcrt_long
__cdecl
ftell
(
FILE
*
);
...
...
@@ -149,16 +153,20 @@ int __cdecl remove(const char*);
int
__cdecl
rename
(
const
char
*
,
const
char
*
);
void
__cdecl
rewind
(
FILE
*
);
int
__cdecl
scanf
(
const
char
*
,...);
int
__cdecl
scanf_s
(
const
char
*
,...);
void
__cdecl
setbuf
(
FILE
*
,
char
*
);
int
__cdecl
setvbuf
(
FILE
*
,
char
*
,
int
,
size_t
);
int
__cdecl
sprintf
(
char
*
,
const
char
*
,...);
int
__cdecl
sprintf_s
(
char
*
,
size_t
,
const
char
*
,...);
int
__cdecl
sscanf
(
const
char
*
,
const
char
*
,...);
int
__cdecl
sscanf_s
(
const
char
*
,
const
char
*
,...);
FILE
*
__cdecl
tmpfile
(
void
);
char
*
__cdecl
tmpnam
(
char
*
);
int
__cdecl
ungetc
(
int
,
FILE
*
);
int
__cdecl
vfprintf
(
FILE
*
,
const
char
*
,
__ms_va_list
);
int
__cdecl
vprintf
(
const
char
*
,
__ms_va_list
);
int
__cdecl
vsprintf
(
char
*
,
const
char
*
,
__ms_va_list
);
int
__cdecl
vsprintf_s
(
char
*
,
size_t
,
const
char
*
,
__ms_va_list
);
#ifndef _WSTDIO_DEFINED
#define _WSTDIO_DEFINED
...
...
@@ -167,10 +175,13 @@ wint_t __cdecl _fputwchar(wint_t);
wchar_t
*
__cdecl
_getws
(
wchar_t
*
);
int
__cdecl
_putws
(
const
wchar_t
*
);
int
__cdecl
_snwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
_snwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
_vscwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
FILE
*
__cdecl
_wfdopen
(
int
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfopen
(
const
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
_wfopen_s
(
FILE
**
,
const
wchar_t
*
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfreopen
(
const
wchar_t
*
,
const
wchar_t
*
,
FILE
*
);
FILE
*
__cdecl
_wfsopen
(
const
wchar_t
*
,
const
wchar_t
*
,
int
);
void
__cdecl
_wperror
(
const
wchar_t
*
);
...
...
@@ -186,6 +197,7 @@ int __cdecl fputws(const wchar_t*,FILE*);
int
__cdecl
fwprintf
(
FILE
*
,
const
wchar_t
*
,...);
int
__cdecl
fputws
(
const
wchar_t
*
,
FILE
*
);
int
__cdecl
fwscanf
(
FILE
*
,
const
wchar_t
*
,...);
int
__cdecl
fwscanf_s
(
FILE
*
,
const
wchar_t
*
,...);
wint_t
__cdecl
getwc
(
FILE
*
);
wint_t
__cdecl
getwchar
(
void
);
wchar_t
*
__cdecl
getws
(
wchar_t
*
);
...
...
@@ -193,13 +205,17 @@ wint_t __cdecl putwc(wint_t,FILE*);
wint_t
__cdecl
putwchar
(
wint_t
);
int
__cdecl
putws
(
const
wchar_t
*
);
int
__cdecl
swprintf
(
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
swprintf_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
swscanf
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
swscanf_s
(
const
wchar_t
*
,
const
wchar_t
*
,...);
wint_t
__cdecl
ungetwc
(
wint_t
,
FILE
*
);
int
__cdecl
vfwprintf
(
FILE
*
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vswprintf
(
wchar_t
*
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vswprintf_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
wprintf
(
const
wchar_t
*
,...);
int
__cdecl
wscanf
(
const
wchar_t
*
,...);
int
__cdecl
wscanf_s
(
const
wchar_t
*
,...);
#endif
/* _WSTDIO_DEFINED */
#endif
/* _STDIO_DEFINED */
...
...
include/msvcrt/stdlib.h
View file @
5361263b
...
...
@@ -161,6 +161,7 @@ void __cdecl _splitpath(const char*,char*,char*,char*,char*);
long
double
__cdecl
_strtold
(
const
char
*
,
char
**
);
void
__cdecl
_swab
(
char
*
,
char
*
,
int
);
char
*
__cdecl
_ui64toa
(
unsigned
__int64
,
char
*
,
int
);
errno_t
__cdecl
_ui64toa_s
(
unsigned
__int64
,
char
*
,
size_t
,
int
);
char
*
__cdecl
_ultoa
(
__msvcrt_ulong
,
char
*
,
int
);
void
__cdecl
_exit
(
int
);
...
...
@@ -183,6 +184,7 @@ void* __cdecl malloc(size_t);
int
__cdecl
mblen
(
const
char
*
,
size_t
);
void
__cdecl
perror
(
const
char
*
);
int
__cdecl
rand
(
void
);
errno_t
__cdecl
rand_s
(
unsigned
int
*
);
void
*
__cdecl
realloc
(
void
*
,
size_t
);
void
__cdecl
srand
(
unsigned
int
);
double
__cdecl
strtod
(
const
char
*
,
char
**
);
...
...
@@ -206,16 +208,21 @@ void __cdecl _wperror(const wchar_t*);
int
__cdecl
_wputenv
(
const
wchar_t
*
);
void
__cdecl
_wsearchenv
(
const
wchar_t
*
,
const
wchar_t
*
,
wchar_t
*
);
void
__cdecl
_wsplitpath
(
const
wchar_t
*
,
wchar_t
*
,
wchar_t
*
,
wchar_t
*
,
wchar_t
*
);
errno_t
__cdecl
_wsplitpath_s
(
const
wchar_t
*
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
);
int
__cdecl
_wsystem
(
const
wchar_t
*
);
double
__cdecl
_wtof
(
const
wchar_t
*
);
int
__cdecl
_wtoi
(
const
wchar_t
*
);
__int64
__cdecl
_wtoi64
(
const
wchar_t
*
);
__msvcrt_long
__cdecl
_wtol
(
const
wchar_t
*
);
size_t
__cdecl
mbstowcs
(
wchar_t
*
,
const
char
*
,
size_t
);
errno_t
__cdecl
mbstowcs_s
(
size_t
*
,
wchar_t
*
,
size_t
,
const
char
*
,
size_t
);
int
__cdecl
mbtowc
(
wchar_t
*
,
const
char
*
,
size_t
);
double
__cdecl
wcstod
(
const
wchar_t
*
,
wchar_t
**
);
__msvcrt_long
__cdecl
wcstol
(
const
wchar_t
*
,
wchar_t
**
,
int
);
size_t
__cdecl
wcstombs
(
char
*
,
const
wchar_t
*
,
size_t
);
errno_t
__cdecl
wcstombs_s
(
size_t
*
,
char
*
,
size_t
,
const
wchar_t
*
,
size_t
);
__msvcrt_ulong
__cdecl
wcstoul
(
const
wchar_t
*
,
wchar_t
**
,
int
);
int
__cdecl
wctomb
(
char
*
,
wchar_t
);
#endif
/* _WSTDLIB_DEFINED */
...
...
include/msvcrt/string.h
View file @
5361263b
...
...
@@ -32,6 +32,7 @@ extern "C" {
void
*
__cdecl
memchr
(
const
void
*
,
int
,
size_t
);
int
__cdecl
memcmp
(
const
void
*
,
const
void
*
,
size_t
);
void
*
__cdecl
memcpy
(
void
*
,
const
void
*
,
size_t
);
errno_t
__cdecl
memcpy_s
(
void
*
,
size_t
,
const
void
*
,
size_t
);
void
*
__cdecl
memset
(
void
*
,
int
,
size_t
);
void
*
__cdecl
_memccpy
(
void
*
,
const
void
*
,
int
,
unsigned
int
);
int
__cdecl
_memicmp
(
const
void
*
,
const
void
*
,
unsigned
int
);
...
...
@@ -53,22 +54,28 @@ char* __cdecl _strset(char*,int);
char
*
__cdecl
_strupr
(
char
*
);
void
*
__cdecl
memmove
(
void
*
,
const
void
*
,
size_t
);
errno_t
__cdecl
memmove_s
(
void
*
,
size_t
,
const
void
*
,
size_t
);
char
*
__cdecl
strcat
(
char
*
,
const
char
*
);
errno_t
__cdecl
strcat_s
(
char
*
,
size_t
,
const
char
*
);
char
*
__cdecl
strchr
(
const
char
*
,
int
);
int
__cdecl
strcmp
(
const
char
*
,
const
char
*
);
int
__cdecl
strcoll
(
const
char
*
,
const
char
*
);
char
*
__cdecl
strcpy
(
char
*
,
const
char
*
);
errno_t
__cdecl
strcpy_s
(
char
*
,
size_t
,
const
char
*
);
size_t
__cdecl
strcspn
(
const
char
*
,
const
char
*
);
char
*
__cdecl
strerror
(
int
);
size_t
__cdecl
strlen
(
const
char
*
);
char
*
__cdecl
strncat
(
char
*
,
const
char
*
,
size_t
);
int
__cdecl
strncmp
(
const
char
*
,
const
char
*
,
size_t
);
char
*
__cdecl
strncpy
(
char
*
,
const
char
*
,
size_t
);
errno_t
__cdecl
strncpy_s
(
char
*
,
size_t
,
const
char
*
,
size_t
);
size_t
__cdecl
strnlen
(
const
char
*
,
size_t
);
char
*
__cdecl
strpbrk
(
const
char
*
,
const
char
*
);
char
*
__cdecl
strrchr
(
const
char
*
,
int
);
size_t
__cdecl
strspn
(
const
char
*
,
const
char
*
);
char
*
__cdecl
strstr
(
const
char
*
,
const
char
*
);
char
*
__cdecl
strtok
(
char
*
,
const
char
*
);
char
*
__cdecl
strtok_s
(
char
*
,
const
char
*
,
char
**
);
size_t
__cdecl
strxfrm
(
char
*
,
const
char
*
,
size_t
);
#ifndef _WSTRING_DEFINED
...
...
@@ -84,15 +91,18 @@ wchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
wchar_t
*
__cdecl
_wcsupr
(
wchar_t
*
);
wchar_t
*
__cdecl
wcscat
(
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
wcscat_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcschr
(
const
wchar_t
*
,
wchar_t
);
int
__cdecl
wcscmp
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
wcscoll
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcscpy
(
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
wcscpy_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
);
size_t
__cdecl
wcscspn
(
const
wchar_t
*
,
const
wchar_t
*
);
size_t
__cdecl
wcslen
(
const
wchar_t
*
);
wchar_t
*
__cdecl
wcsncat
(
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
wcsncmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
wcsncpy
(
wchar_t
*
,
const
wchar_t
*
,
size_t
);
errno_t
__cdecl
wcsncpy_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
wcspbrk
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcsrchr
(
const
wchar_t
*
,
wchar_t
wcFor
);
size_t
__cdecl
wcsspn
(
const
wchar_t
*
,
const
wchar_t
*
);
...
...
include/msvcrt/wchar.h
View file @
5361263b
...
...
@@ -275,10 +275,13 @@ wint_t __cdecl _fputwchar(wint_t);
wchar_t
*
__cdecl
_getws
(
wchar_t
*
);
int
__cdecl
_putws
(
const
wchar_t
*
);
int
__cdecl
_snwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
_snwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
_vscwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
_vsnwprintf_s
(
wchar_t
*
,
size_t
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
FILE
*
__cdecl
_wfdopen
(
int
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfopen
(
const
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
_wfopen_s
(
FILE
**
,
const
wchar_t
*
,
const
wchar_t
*
);
FILE
*
__cdecl
_wfreopen
(
const
wchar_t
*
,
const
wchar_t
*
,
FILE
*
);
FILE
*
__cdecl
_wfsopen
(
const
wchar_t
*
,
const
wchar_t
*
,
int
);
void
__cdecl
_wperror
(
const
wchar_t
*
);
...
...
@@ -294,6 +297,7 @@ int __cdecl fputws(const wchar_t*,FILE*);
int
__cdecl
fwprintf
(
FILE
*
,
const
wchar_t
*
,...);
int
__cdecl
fputws
(
const
wchar_t
*
,
FILE
*
);
int
__cdecl
fwscanf
(
FILE
*
,
const
wchar_t
*
,...);
int
__cdecl
fwscanf_s
(
FILE
*
,
const
wchar_t
*
,...);
wint_t
__cdecl
getwc
(
FILE
*
);
wint_t
__cdecl
getwchar
(
void
);
wchar_t
*
__cdecl
getws
(
wchar_t
*
);
...
...
@@ -301,13 +305,17 @@ wint_t __cdecl putwc(wint_t,FILE*);
wint_t
__cdecl
putwchar
(
wint_t
);
int
__cdecl
putws
(
const
wchar_t
*
);
int
__cdecl
swprintf
(
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
swprintf_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,...);
int
__cdecl
swscanf
(
const
wchar_t
*
,
const
wchar_t
*
,...);
int
__cdecl
swscanf_s
(
const
wchar_t
*
,
const
wchar_t
*
,...);
wint_t
__cdecl
ungetwc
(
wint_t
,
FILE
*
);
int
__cdecl
vfwprintf
(
FILE
*
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vswprintf
(
wchar_t
*
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vswprintf_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
vwprintf
(
const
wchar_t
*
,
__ms_va_list
);
int
__cdecl
wprintf
(
const
wchar_t
*
,...);
int
__cdecl
wscanf
(
const
wchar_t
*
,...);
int
__cdecl
wscanf_s
(
const
wchar_t
*
,...);
#endif
/* _WSTDIO_DEFINED */
#ifndef _WSTDLIB_DEFINED
...
...
@@ -324,16 +332,21 @@ void __cdecl _wperror(const wchar_t*);
int
__cdecl
_wputenv
(
const
wchar_t
*
);
void
__cdecl
_wsearchenv
(
const
wchar_t
*
,
const
wchar_t
*
,
wchar_t
*
);
void
__cdecl
_wsplitpath
(
const
wchar_t
*
,
wchar_t
*
,
wchar_t
*
,
wchar_t
*
,
wchar_t
*
);
errno_t
__cdecl
_wsplitpath_s
(
const
wchar_t
*
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
,
wchar_t
*
,
size_t
);
int
__cdecl
_wsystem
(
const
wchar_t
*
);
double
__cdecl
_wtof
(
const
wchar_t
*
);
int
__cdecl
_wtoi
(
const
wchar_t
*
);
__int64
__cdecl
_wtoi64
(
const
wchar_t
*
);
__msvcrt_long
__cdecl
_wtol
(
const
wchar_t
*
);
size_t
__cdecl
mbstowcs
(
wchar_t
*
,
const
char
*
,
size_t
);
errno_t
__cdecl
mbstowcs_s
(
size_t
*
,
wchar_t
*
,
size_t
,
const
char
*
,
size_t
);
int
__cdecl
mbtowc
(
wchar_t
*
,
const
char
*
,
size_t
);
double
__cdecl
wcstod
(
const
wchar_t
*
,
wchar_t
**
);
__msvcrt_long
__cdecl
wcstol
(
const
wchar_t
*
,
wchar_t
**
,
int
);
size_t
__cdecl
wcstombs
(
char
*
,
const
wchar_t
*
,
size_t
);
errno_t
__cdecl
wcstombs_s
(
size_t
*
,
char
*
,
size_t
,
const
wchar_t
*
,
size_t
);
__msvcrt_ulong
__cdecl
wcstoul
(
const
wchar_t
*
,
wchar_t
**
,
int
);
int
__cdecl
wctomb
(
char
*
,
wchar_t
);
#endif
/* _WSTDLIB_DEFINED */
...
...
@@ -351,15 +364,18 @@ wchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
wchar_t
*
__cdecl
_wcsupr
(
wchar_t
*
);
wchar_t
*
__cdecl
wcscat
(
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
wcscat_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcschr
(
const
wchar_t
*
,
wchar_t
);
int
__cdecl
wcscmp
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
wcscoll
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcscpy
(
wchar_t
*
,
const
wchar_t
*
);
errno_t
__cdecl
wcscpy_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
);
size_t
__cdecl
wcscspn
(
const
wchar_t
*
,
const
wchar_t
*
);
size_t
__cdecl
wcslen
(
const
wchar_t
*
);
wchar_t
*
__cdecl
wcsncat
(
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
wcsncmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
wcsncpy
(
wchar_t
*
,
const
wchar_t
*
,
size_t
);
errno_t
__cdecl
wcsncpy_s
(
wchar_t
*
,
size_t
,
const
wchar_t
*
,
size_t
);
wchar_t
*
__cdecl
wcspbrk
(
const
wchar_t
*
,
const
wchar_t
*
);
wchar_t
*
__cdecl
wcsrchr
(
const
wchar_t
*
,
wchar_t
wcFor
);
size_t
__cdecl
wcsspn
(
const
wchar_t
*
,
const
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