Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7c5b7616
Commit
7c5b7616
authored
Jun 15, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* vlc_strcasestr defines (still missing something. still can't find it)
parent
de5869fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
include/vlc_common.h
include/vlc_common.h
+15
-1
No files found.
include/vlc_common.h
View file @
7c5b7616
...
...
@@ -2,7 +2,7 @@
* common.h: common definitions
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998
, 1999, 2000
VideoLAN
* Copyright (C) 1998
-2004
VideoLAN
* $Id$
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -753,6 +753,20 @@ static inline void _SetQWLE( uint8_t *p, uint64_t i_qw )
# define vlc_strncasecmp NULL
#endif
#ifndef HAVE_STRCASESTR
# ifdef HAVE_STRISTR
# define strcasestr stristr
# if !defined(__PLUGIN__)
# define vlc_strcasestr NULL
# endif
# elif !defined(__PLUGIN__)
# define strcasestr vlc_strcasestr
VLC_EXPORT
(
char
*
,
vlc_strcasestr
,
(
const
char
*
s1
,
const
char
*
s2
)
);
# endif
#elif !defined(__PLUGIN__)
# define vlc_strcasestr NULL
#endif
/* Format type specifiers for 64 bits numbers */
#if !defined(WIN32) && !defined(UNDER_CE)
# define I64Fd "%lld"
...
...
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