Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
d4546731
Commit
d4546731
authored
Jan 20, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use strspn() and constify
parent
c495c265
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
12 deletions
+4
-12
modules/demux/playlist/b4s.c
modules/demux/playlist/b4s.c
+4
-12
No files found.
modules/demux/playlist/b4s.c
View file @
d4546731
...
...
@@ -44,7 +44,7 @@ struct demux_sys_t
*****************************************************************************/
static
int
Demux
(
demux_t
*
p_demux
);
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
);
static
int
IsWhitespace
(
char
*
psz_string
);
static
bool
IsWhitespace
(
const
char
*
psz_string
);
/*****************************************************************************
* Import_B4S: main import function
...
...
@@ -281,16 +281,8 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
return
VLC_EGENERIC
;
}
static
int
IsWhitespace
(
char
*
psz_string
)
static
bool
IsWhitespace
(
const
char
*
psz_string
)
{
while
(
*
psz_string
)
{
if
(
*
psz_string
!=
' '
&&
*
psz_string
!=
'\t'
&&
*
psz_string
!=
'\r'
&&
*
psz_string
!=
'\n'
)
{
return
false
;
}
psz_string
++
;
}
return
true
;
psz_string
+=
strspn
(
psz_string
,
"
\t\r\n
"
);
return
!*
psz_string
;
}
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