Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
belle-sip
Commits
dbc4872e
Commit
dbc4872e
authored
Apr 07, 2017
by
Ghislain MARY
Browse files
Fix build on Windows.
parent
05a77dbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/parserutils.h
src/parserutils.h
+3
-1
No files found.
src/parserutils.h
View file @
dbc4872e
...
...
@@ -19,10 +19,12 @@
#define belle_sip_parserutils_h
#include "port.h"
static
inline
int
belle_sip_strcasecmp
(
const
char
*
a
,
const
char
*
b
)
{
static
BELLESIP_INLINE
int
belle_sip_strcasecmp
(
const
char
*
a
,
const
char
*
b
)
{
if
(
!
a
||
!
b
)
return
0
;
return
strcasecmp
(
a
,
b
)
==
0
;
}
#define IS_TOKEN(token) \
belle_sip_strcasecmp(#token,(const char*)INPUT->toStringTT(INPUT,LT(1),LT(strlen(#token)))->chars)
...
...
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