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
42419926
Commit
42419926
authored
Oct 05, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strtok_r: remove tabs
parent
04b2f96e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
compat/strtok_r.c
compat/strtok_r.c
+20
-20
No files found.
compat/strtok_r.c
View file @
42419926
...
...
@@ -26,27 +26,27 @@
char
*
strtok_r
(
char
*
s
,
const
char
*
delim
,
char
**
save_ptr
)
{
char
*
token
;
char
*
token
;
if
(
s
==
NULL
)
s
=
*
save_ptr
;
if
(
s
==
NULL
)
s
=
*
save_ptr
;
/* Scan leading delimiters. */
s
+=
strspn
(
s
,
delim
);
if
(
*
s
==
'\0'
)
return
NULL
;
/* Scan leading delimiters. */
s
+=
strspn
(
s
,
delim
);
if
(
*
s
==
'\0'
)
return
NULL
;
/* Find the end of the token. */
token
=
s
;
s
=
strpbrk
(
token
,
delim
);
if
(
s
==
NULL
)
/* This token finishes the string. */
*
save_ptr
=
strchr
(
token
,
'\0'
);
else
{
/* Terminate the token and make *SAVE_PTR point past it. */
*
s
=
'\0'
;
*
save_ptr
=
s
+
1
;
}
return
token
;
/* Find the end of the token. */
token
=
s
;
s
=
strpbrk
(
token
,
delim
);
if
(
s
==
NULL
)
/* This token finishes the string. */
*
save_ptr
=
strchr
(
token
,
'\0'
);
else
{
/* Terminate the token and make *SAVE_PTR point past it. */
*
s
=
'\0'
;
*
save_ptr
=
s
+
1
;
}
return
token
;
}
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