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
5f716236
Commit
5f716236
authored
Jul 23, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed non-exported string functions.
parent
3027b2b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
56 deletions
+0
-56
string.c
dlls/msvcrt/string.c
+0
-56
No files found.
dlls/msvcrt/string.c
View file @
5f716236
...
...
@@ -47,18 +47,6 @@ char* msvcrt_strndup(const char* buf, unsigned int size)
}
/*********************************************************************
* _strdec (MSVCRT.@)
*/
char
*
_strdec
(
const
char
*
str1
,
const
char
*
str2
)
{
/* Hmm. While the docs suggest that the following should work... */
/* return (str2<=str1?0:str2-1); */
/* ...Version 2.50.4170 (NT) from win98 constantly decrements! */
str1
=
str1
;
/* remove warning */
return
(
char
*
)
str2
-
1
;
}
/*********************************************************************
* _mbsdup (MSVCRT.@)
* _strdup (MSVCRT.@)
*/
...
...
@@ -70,32 +58,6 @@ char* _strdup(const char* str)
}
/*********************************************************************
* _strinc (MSVCRT.@)
*/
char
*
_strinc
(
const
char
*
str
)
{
return
(
char
*
)
str
+
1
;
}
/*********************************************************************
* _strnextc (MSVCRT.@)
*/
unsigned
int
_strnextc
(
const
char
*
str
)
{
return
(
unsigned
int
)
*
str
;
}
/*********************************************************************
* _strninc (MSVCRT.@)
*
* Return a pointer to the 'n'th character in a string
*/
char
*
_strninc
(
char
*
str
,
unsigned
int
n
)
{
return
str
+
n
;
}
/*********************************************************************
* _strnset (MSVCRT.@)
*/
char
*
_strnset
(
char
*
str
,
int
value
,
unsigned
int
len
)
...
...
@@ -138,24 +100,6 @@ char* _strset(char* str, int value)
}
/*********************************************************************
* _strncnt (MSVCRT.@)
*/
unsigned
int
_strncnt
(
char
*
str
,
unsigned
int
max
)
{
unsigned
int
len
=
strlen
(
str
);
return
(
len
>
max
?
max
:
len
);
}
/*********************************************************************
* _strspnp (MSVCRT.@)
*/
char
*
_strspnp
(
char
*
str1
,
char
*
str2
)
{
str1
+=
strspn
(
str1
,
str2
);
return
*
str1
?
str1
:
0
;
}
/*********************************************************************
* _swab (MSVCRT.@)
*/
void
_swab
(
char
*
src
,
char
*
dst
,
int
len
)
...
...
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