Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
fdf9849f
Commit
fdf9849f
authored
Feb 20, 2019
by
Uwe Schulzweida
Browse files
Declare inline function strIsEqual() as static.
parent
b2454088
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdi_int.h
View file @
fdf9849f
...
...
@@ -41,7 +41,7 @@ char *strdup(const char *s);
char
*
strToLower
(
char
*
str
);
bool
strStartsWith
(
const
char
*
vstr
,
const
char
*
cstr
);
inline
bool
static
inline
bool
strIsEqual
(
const
char
*
x
,
const
char
*
y
)
{
return
(
*
x
==
*
y
)
&&
strcmp
(
x
,
y
)
==
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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