Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
9c05c92c
Commit
9c05c92c
authored
Jun 27, 2009
by
duane
Browse files
Switch to strotk() grr....
git-svn-id:
svn://svn.berlios.de/openocd/trunk@2406
b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent
92db0c58
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/helper/membuf.c
View file @
9c05c92c
...
...
@@ -58,11 +58,13 @@ membuf_strtok(struct membuf *pBuf, const char *sep, void **pLast)
if
(
pBuf
)
{
pBuf
->
_strtoklast
=
NULL
;
*
pLast
=
pBuf
;
return
strtok_r
(((
char
*
)(
pBuf
->
buf
)),
sep
,
&
(
pBuf
->
_strtoklast
));
// this should be "strtok_r()" but windows lacks */
return
strtok
(((
char
*
)(
pBuf
->
buf
)),
sep
);
}
else
{
// recover our pBuf
pBuf
=
*
((
struct
membuf
**
)(
pLast
));
return
strtok_r
(
NULL
,
sep
,
&
(
pBuf
->
_strtoklast
));
// this should be "strtok_r()" but windows lacks */
return
strtok
(
NULL
,
sep
);
}
}
...
...
Write
Preview
Supports
Markdown
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