Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Иван Мажукин
mpd
Commits
ebdb7c8d
Commit
ebdb7c8d
authored
Sep 12, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/WStringAPI: add StringIsEqualIgnoreCase() overload
parent
1fda842e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
WStringAPI.hxx
src/util/WStringAPI.hxx
+19
-0
No files found.
src/util/WStringAPI.hxx
View file @
ebdb7c8d
...
...
@@ -134,6 +134,25 @@ StringIsEqual(const wchar_t *a, const wchar_t *b, size_t length) noexcept
return
wcsncmp
(
a
,
b
,
length
)
==
0
;
}
#ifdef _WIN32
gcc_pure
gcc_nonnull_all
static
inline
bool
StringIsEqualIgnoreCase
(
const
wchar_t
*
a
,
const
wchar_t
*
b
)
noexcept
{
return
_wcsicmp
(
a
,
b
)
==
0
;
}
gcc_pure
gcc_nonnull_all
static
inline
bool
StringIsEqualIgnoreCase
(
const
wchar_t
*
a
,
const
wchar_t
*
b
,
size_t
size
)
noexcept
{
return
_wcsnicmp
(
a
,
b
,
size
)
==
0
;
}
#endif
#ifndef __BIONIC__
gcc_malloc
gcc_nonnull_all
...
...
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